Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
e938f57
chromium-integration
rogerwang Mar 18, 2015
9f683c4
export openssl symbols
rogerwang Apr 23, 2015
2054c4b
fix linux build warning
rogerwang Jul 22, 2015
860cd39
disable warnings for windows platform
rogerwang Aug 12, 2015
b78cf41
dummystream on win32
rogerwang Aug 20, 2015
7e6e3aa
content verification in node
rogerwang Dec 9, 2015
ea3dac6
don't create console window in spawn
rogerwang Dec 20, 2015
0d1265e
fix allocator
rogerwang Dec 27, 2015
f8c2696
don't insert same req into pending list again
rogerwang Dec 28, 2015
bef06a2
disable warning C4065
GnorTech Feb 11, 2016
2991c61
support node-main
GnorTech Mar 5, 2016
e3e813c
Workaround of realloc in node_buffer
rogerwang Mar 17, 2016
0408b3b
add KickNextTick back
rogerwang Apr 2, 2016
b300394
don't mark exiting upon uncaught exception
rogerwang May 7, 2016
777aa3c
[WIN] disable warning for non official build
rogerwang May 27, 2016
30284c7
fixed decoding hex & base64 from two bytes external strings
Jul 6, 2016
abd2abc
fix unsigned long print in 32-bit build
rogerwang Jul 13, 2016
bd64bb8
support GN build
rogerwang Jun 12, 2016
bf5cdde
fix build error: value vs v8::value
rogerwang Aug 18, 2016
46e6ca0
fixed typos in common.gypi to prevent nw-gyp failure
Sep 5, 2016
205085c
move conditions using 'component' to 'target_defaults'
Sep 9, 2016
b75f8a8
fix v7 linux build with -Wno-unused-result
rogerwang Oct 25, 2016
20d7e8d
Fix gyps for common.gypi removal in chromium repo
rogerwang Oct 10, 2016
f7d9d04
fix for component build on osx
Sep 19, 2016
8e98761
delete common.gypi
jefry-vcube Oct 26, 2016
2cb7d9f
copy chromium build folder for gyp files
jefry-vcube Oct 26, 2016
bece897
compile error fixes
jefry-vcube Oct 26, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
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