OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 4391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4402 '../webkit/webkit.gyp:glue', | 4402 '../webkit/webkit.gyp:glue', |
4403 'debugger', | 4403 'debugger', |
4404 'renderer', | 4404 'renderer', |
4405 'browser' | 4405 'browser' |
4406 ], | 4406 ], |
4407 'sources': [ | 4407 'sources': [ |
4408 'tools/pbl_tool/pbl_tool.cc', | 4408 'tools/pbl_tool/pbl_tool.cc', |
4409 ], | 4409 ], |
4410 }, | 4410 }, |
4411 { | 4411 { |
| 4412 # TODO(rafaelw): Reenable build extension_docs on Mac. |
| 4413 'target_name': 'extension_docs', |
| 4414 'type': 'none', |
| 4415 'dependencies': [ |
| 4416 '../webkit/tools/test_shell/test_shell.gyp:test_shell', |
| 4417 ], |
| 4418 'actions': [ |
| 4419 { |
| 4420 'inputs': [ '<!@(python common/extensions/docs/build/build.py --li
st-inputs)'], |
| 4421 'outputs': ['<!@(python common/extensions/docs/build/build.py --li
st-outputs)'], |
| 4422 'action_name': 'build_extension_docs', |
| 4423 'action': [ 'python', |
| 4424 'common/extensions/docs/build/build.py', |
| 4425 '--product-dir', |
| 4426 '<(PRODUCT_DIR)'], |
| 4427 }, |
| 4428 ], |
| 4429 }, |
| 4430 { |
4412 'target_name': 'perf_tests', | 4431 'target_name': 'perf_tests', |
4413 'type': 'executable', | 4432 'type': 'executable', |
4414 'msvs_guid': '9055E088-25C6-47FD-87D5-D9DD9FD75C9F', | 4433 'msvs_guid': '9055E088-25C6-47FD-87D5-D9DD9FD75C9F', |
4415 'dependencies': [ | 4434 'dependencies': [ |
4416 'browser', | 4435 'browser', |
4417 'common', | 4436 'common', |
4418 'debugger', | 4437 'debugger', |
4419 'renderer', | 4438 'renderer', |
4420 'chrome_resources', | 4439 'chrome_resources', |
4421 'chrome_strings', | 4440 'chrome_strings', |
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5211 # Use outputs of this action as inputs for the main target build. | 5230 # Use outputs of this action as inputs for the main target build. |
5212 # Seems as a misnomer but makes this happy on Linux (scons). | 5231 # Seems as a misnomer but makes this happy on Linux (scons). |
5213 'process_outputs_as_sources': 1, | 5232 'process_outputs_as_sources': 1, |
5214 }, | 5233 }, |
5215 ], # 'actions' | 5234 ], # 'actions' |
5216 }, | 5235 }, |
5217 ] | 5236 ] |
5218 }], | 5237 }], |
5219 ], # 'conditions' | 5238 ], # 'conditions' |
5220 } | 5239 } |
OLD | NEW |