| 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 819 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 830 'service/remoting/chromoting_host_manager.cc', | 830 'service/remoting/chromoting_host_manager.cc', |
| 831 'service/remoting/chromoting_host_manager.h', | 831 'service/remoting/chromoting_host_manager.h', |
| 832 ], | 832 ], |
| 833 }], | 833 }], |
| 834 ], | 834 ], |
| 835 }, | 835 }, |
| 836 { | 836 { |
| 837 'target_name': 'ipclist', | 837 'target_name': 'ipclist', |
| 838 'type': 'executable', | 838 'type': 'executable', |
| 839 'dependencies': [ | 839 'dependencies': [ |
| 840 'chrome', | 840 'test_support_common', |
| 841 'chrome_resources', | 841 '../skia/skia.gyp:skia', |
| 842 'chrome_strings', | |
| 843 'test_support_common', | |
| 844 'test_support_ui', | |
| 845 '../skia/skia.gyp:skia', | |
| 846 '../testing/gtest.gyp:gtest', | |
| 847 '../third_party/libxslt/libxslt.gyp:libxslt', | |
| 848 '../third_party/npapi/npapi.gyp:npapi', | |
| 849 ], | 842 ], |
| 850 'include_dirs': [ | 843 'include_dirs': [ |
| 851 '..', | 844 '..', |
| 852 ], | 845 ], |
| 853 'sources': [ | 846 'sources': [ |
| 854 'tools/ipclist/all_messages.h', | 847 'tools/ipclist/all_messages.h', |
| 855 'tools/ipclist/ipclist.cc', | 848 'tools/ipclist/ipclist.cc', |
| 856 ], | 849 ], |
| 857 }, | 850 }, |
| 858 ], | 851 ], |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1254 '<@(_inputs)'], | 1247 '<@(_inputs)'], |
| 1255 'message': 'Stripping reliability tests', | 1248 'message': 'Stripping reliability tests', |
| 1256 }, | 1249 }, |
| 1257 ], | 1250 ], |
| 1258 'dependencies': [ | 1251 'dependencies': [ |
| 1259 'automated_ui_tests', | 1252 'automated_ui_tests', |
| 1260 'reliability_tests', | 1253 'reliability_tests', |
| 1261 ], | 1254 ], |
| 1262 }], | 1255 }], |
| 1263 ], | 1256 ], |
| 1264 } | 1257 }, |
| 1258 { |
| 1259 'target_name': 'ipcfuzz', |
| 1260 'type': 'loadable_module', |
| 1261 'include_dirs': [ |
| 1262 '..', |
| 1263 ], |
| 1264 'dependencies': [ |
| 1265 'test_support_common', |
| 1266 '../skia/skia.gyp:skia', |
| 1267 ], |
| 1268 'sources': [ |
| 1269 'tools/ipclist/all_messages.h', |
| 1270 'tools/ipclist/ipcfuzz.cc', |
| 1271 ], |
| 1272 }, |
| 1265 ], | 1273 ], |
| 1266 },], # OS=="linux" | 1274 },], # OS=="linux" |
| 1267 ['OS=="win"', | 1275 ['OS=="win"', |
| 1268 { 'targets': [ | 1276 { 'targets': [ |
| 1269 { | 1277 { |
| 1270 # TODO(sgk): remove this when we change the buildbots to | 1278 # TODO(sgk): remove this when we change the buildbots to |
| 1271 # use the generated build\all.sln file to build the world. | 1279 # use the generated build\all.sln file to build the world. |
| 1272 'target_name': 'pull_in_all', | 1280 'target_name': 'pull_in_all', |
| 1273 'type': 'none', | 1281 'type': 'none', |
| 1274 'dependencies': [ | 1282 'dependencies': [ |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1593 }], # targets | 1601 }], # targets |
| 1594 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1602 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
| 1595 ], # 'conditions' | 1603 ], # 'conditions' |
| 1596 } | 1604 } |
| 1597 | 1605 |
| 1598 # Local Variables: | 1606 # Local Variables: |
| 1599 # tab-width:2 | 1607 # tab-width:2 |
| 1600 # indent-tabs-mode:nil | 1608 # indent-tabs-mode:nil |
| 1601 # End: | 1609 # End: |
| 1602 # vim: set expandtab tabstop=2 shiftwidth=2: | 1610 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |