OLD | NEW |
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 Loading... |
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 '../chrome/nacl/nacl_main.cc', |
| 1317 ], |
| 1318 'direct_dependent_settings': { |
| 1319 'defines': [ |
| 1320 'NACL_BLOCK_SHIFT=5', |
| 1321 'NACL_BLOCK_SIZE=32', |
| 1322 '<@(nacl_defines)', |
| 1323 ], |
| 1324 }, |
| 1325 }, |
1305 ], | 1326 ], |
1306 },], # OS=="linux" | 1327 },], # OS=="linux" |
1307 ['OS=="win"', | 1328 ['OS=="win"', |
1308 { 'targets': [ | 1329 { 'targets': [ |
1309 { | 1330 { |
1310 # TODO(sgk): remove this when we change the buildbots to | 1331 # TODO(sgk): remove this when we change the buildbots to |
1311 # use the generated build\all.sln file to build the world. | 1332 # use the generated build\all.sln file to build the world. |
1312 'target_name': 'pull_in_all', | 1333 'target_name': 'pull_in_all', |
1313 'type': 'none', | 1334 'type': 'none', |
1314 'dependencies': [ | 1335 'dependencies': [ |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1634 }], # targets | 1655 }], # targets |
1635 }], # os_posix == 1 and OS != "mac" | 1656 }], # os_posix == 1 and OS != "mac" |
1636 ], # 'conditions' | 1657 ], # 'conditions' |
1637 } | 1658 } |
1638 | 1659 |
1639 # Local Variables: | 1660 # Local Variables: |
1640 # tab-width:2 | 1661 # tab-width:2 |
1641 # indent-tabs-mode:nil | 1662 # indent-tabs-mode:nil |
1642 # End: | 1663 # End: |
1643 # vim: set expandtab tabstop=2 shiftwidth=2: | 1664 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |