Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: chrome/chrome.gyp

Issue 6995121: New NaCl zygote implementation 2 (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Use IPC::Channel directly instead of ChildProcess Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 { 4 {
5 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 'variables': { 8 'variables': {
9 'version_py_path': 'tools/build/version.py', 9 'version_py_path': 'tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 1284 matching lines...) Expand 10 before | Expand all | Expand 10 after
1295 ], 1295 ],
1296 'dependencies': [ 1296 'dependencies': [
1297 'test_support_common', 1297 'test_support_common',
1298 '../skia/skia.gyp:skia', 1298 '../skia/skia.gyp:skia',
1299 ], 1299 ],
1300 'sources': [ 1300 'sources': [
1301 'tools/ipclist/all_messages.h', 1301 'tools/ipclist/all_messages.h',
1302 'tools/ipclist/ipcfuzz.cc', 1302 'tools/ipclist/ipcfuzz.cc',
1303 ], 1303 ],
1304 }, 1304 },
1305 {
1306 'target_name': 'nacl_helper',
1307 'type': 'executable',
1308 'include_dirs': [
1309 '..',
1310 ],
1311 'dependencies': [
1312 'nacl',
1313 ],
1314 'sources': [
1315 '../chrome/nacl/nacl_helper_linux.cc',
1316 'browser/renderer_host/render_process_host_dummy.cc',
jam 2011/06/21 20:54:08 is this needed?
Brad Chen 2011/06/21 23:43:48 I've dropped the dummy files here. These changes p
1317 'common/googleurl_dummy.cc',
1318 'app/dummy_main_functions.cc',
jam 2011/06/21 20:54:08 ditto (and gurl as well)
1319 ],
1320 },
1305 ], 1321 ],
1306 },], # OS=="linux" 1322 },], # OS=="linux"
1307 ['OS=="win"', 1323 ['OS=="win"',
1308 { 'targets': [ 1324 { 'targets': [
1309 { 1325 {
1310 # TODO(sgk): remove this when we change the buildbots to 1326 # TODO(sgk): remove this when we change the buildbots to
1311 # use the generated build\all.sln file to build the world. 1327 # use the generated build\all.sln file to build the world.
1312 'target_name': 'pull_in_all', 1328 'target_name': 'pull_in_all',
1313 'type': 'none', 1329 'type': 'none',
1314 'dependencies': [ 1330 'dependencies': [
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
1634 }], # targets 1650 }], # targets
1635 }], # os_posix == 1 and OS != "mac" 1651 }], # os_posix == 1 and OS != "mac"
1636 ], # 'conditions' 1652 ], # 'conditions'
1637 } 1653 }
1638 1654
1639 # Local Variables: 1655 # Local Variables:
1640 # tab-width:2 1656 # tab-width:2
1641 # indent-tabs-mode:nil 1657 # indent-tabs-mode:nil
1642 # End: 1658 # End:
1643 # vim: set expandtab tabstop=2 shiftwidth=2: 1659 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698