| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # A hook that can be overridden in other repositories to add additional | 7 # A hook that can be overridden in other repositories to add additional |
| 8 # compilation targets to 'All'. | 8 # compilation targets to 'All'. |
| 9 'app_targets%': [], | 9 'app_targets%': [], |
| 10 # For Android-specific targets. | 10 # For Android-specific targets. |
| 11 'android_app_targets%': [], | 11 'android_app_targets%': [], |
| 12 }, | 12 }, |
| 13 'includes': [ |
| 14 '../third_party/openh264/openh264_args.gypi', |
| 15 ], |
| 13 'targets': [ | 16 'targets': [ |
| 14 { | 17 { |
| 15 'target_name': 'All', | 18 'target_name': 'All', |
| 16 'type': 'none', | 19 'type': 'none', |
| 17 'xcode_create_dependents_test_runner': 1, | 20 'xcode_create_dependents_test_runner': 1, |
| 18 'dependencies': [ | 21 'dependencies': [ |
| 19 '<@(app_targets)', | 22 '<@(app_targets)', |
| 20 'some.gyp:*', | 23 'some.gyp:*', |
| 21 '../base/base.gyp:*', | 24 '../base/base.gyp:*', |
| 22 '../components/components.gyp:*', | 25 '../components/components.gyp:*', |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 ['(chromeos==1 or OS=="linux" or OS=="win" or OS=="mac") and chromecast=
=0', { | 282 ['(chromeos==1 or OS=="linux" or OS=="win" or OS=="mac") and chromecast=
=0', { |
| 280 'dependencies': [ | 283 'dependencies': [ |
| 281 '../extensions/shell/app_shell.gyp:*', | 284 '../extensions/shell/app_shell.gyp:*', |
| 282 ], | 285 ], |
| 283 }], | 286 }], |
| 284 ['envoy==1', { | 287 ['envoy==1', { |
| 285 'dependencies': [ | 288 'dependencies': [ |
| 286 '../envoy/envoy.gyp:*', | 289 '../envoy/envoy.gyp:*', |
| 287 ], | 290 ], |
| 288 }], | 291 }], |
| 292 ['use_openh264==1', { |
| 293 'dependencies': [ |
| 294 '../third_party/openh264/openh264.gyp:*', |
| 295 ], |
| 296 }], |
| 289 ], | 297 ], |
| 290 }, # target_name: All | 298 }, # target_name: All |
| 291 { | 299 { |
| 292 'target_name': 'All_syzygy', | 300 'target_name': 'All_syzygy', |
| 293 'type': 'none', | 301 'type': 'none', |
| 294 'conditions': [ | 302 'conditions': [ |
| 295 ['OS=="win" and fastbuild==0 and target_arch=="ia32" and ' | 303 ['OS=="win" and fastbuild==0 and target_arch=="ia32" and ' |
| 296 '(syzyasan==1 or syzygy_optimize==1)', { | 304 '(syzyasan==1 or syzygy_optimize==1)', { |
| 297 'dependencies': [ | 305 'dependencies': [ |
| 298 '../chrome/installer/mini_installer_syzygy.gyp:*', | 306 '../chrome/installer/mini_installer_syzygy.gyp:*', |
| (...skipping 1131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1430 'dependencies': [ | 1438 'dependencies': [ |
| 1431 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1439 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
| 1432 '../ui/views/views.gyp:views', | 1440 '../ui/views/views.gyp:views', |
| 1433 '../ui/views/views.gyp:views_unittests', | 1441 '../ui/views/views.gyp:views_unittests', |
| 1434 ], | 1442 ], |
| 1435 }, # target_name: macviews_builder | 1443 }, # target_name: macviews_builder |
| 1436 ], # targets | 1444 ], # targets |
| 1437 }], # os=='mac' and toolkit_views==1 | 1445 }], # os=='mac' and toolkit_views==1 |
| 1438 ], # conditions | 1446 ], # conditions |
| 1439 } | 1447 } |
| OLD | NEW |