Skip to content

Commit

Permalink
copy chromium build folder for gyp files
Browse files Browse the repository at this point in the history
  • Loading branch information
jefry-vcube committed Oct 27, 2016
1 parent a054aaf commit eb2bc31
Show file tree
Hide file tree
Showing 667 changed files with 91,009 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build/OWNERS
16 changes: 16 additions & 0 deletions build/PRESUBMIT.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.


def _RunTests(input_api, output_api):
return (input_api.canned_checks.RunUnitTestsInDirectory(
input_api, output_api, '.', whitelist=[r'.+_test.py$']))


def CheckChangeOnUpload(input_api, output_api):
return _RunTests(input_api, output_api)


def CheckChangeOnCommit(input_api, output_api):
return _RunTests(input_api, output_api)
Loading

0 comments on commit eb2bc31

Please sign in to comment.