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

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: Addressing feedback from John 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 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after
1335 ], 1335 ],
1336 'dependencies': [ 1336 'dependencies': [
1337 'test_support_common', 1337 'test_support_common',
1338 '../skia/skia.gyp:skia', 1338 '../skia/skia.gyp:skia',
1339 ], 1339 ],
1340 'sources': [ 1340 'sources': [
1341 'tools/ipclist/all_messages.h', 1341 'tools/ipclist/all_messages.h',
1342 'tools/ipclist/ipcfuzz.cc', 1342 'tools/ipclist/ipcfuzz.cc',
1343 ], 1343 ],
1344 }, 1344 },
1345 {
1346 'target_name': 'nacl_helper',
jam 2011/06/22 00:49:52 should this be in chrome\nacl.gyp?
Brad Chen 2011/06/22 16:10:31 Done.
1347 'type': 'executable',
1348 'include_dirs': [
1349 '..',
1350 ],
1351 'dependencies': [
1352 'nacl',
1353 ],
1354 'sources': [
1355 '../chrome/nacl/nacl_helper_linux.cc',
1356 ],
1357 },
1345 ], 1358 ],
1346 },], # OS=="linux" 1359 },], # OS=="linux"
1347 ['OS=="win"', 1360 ['OS=="win"',
1348 { 'targets': [ 1361 { 'targets': [
1349 { 1362 {
1350 # TODO(sgk): remove this when we change the buildbots to 1363 # TODO(sgk): remove this when we change the buildbots to
1351 # use the generated build\all.sln file to build the world. 1364 # use the generated build\all.sln file to build the world.
1352 'target_name': 'pull_in_all', 1365 'target_name': 'pull_in_all',
1353 'type': 'none', 1366 'type': 'none',
1354 'dependencies': [ 1367 'dependencies': [
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
1672 }], # targets 1685 }], # targets
1673 }], # os_posix == 1 and OS != "mac" 1686 }], # os_posix == 1 and OS != "mac"
1674 ], # 'conditions' 1687 ], # 'conditions'
1675 } 1688 }
1676 1689
1677 # Local Variables: 1690 # Local Variables:
1678 # tab-width:2 1691 # tab-width:2
1679 # indent-tabs-mode:nil 1692 # indent-tabs-mode:nil
1680 # End: 1693 # End:
1681 # vim: set expandtab tabstop=2 shiftwidth=2: 1694 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698