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. |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 ['(chromeos==1 or OS=="linux" or OS=="win" or OS=="mac") and chromecast=
=0', { | 281 ['(chromeos==1 or OS=="linux" or OS=="win" or OS=="mac") and chromecast=
=0', { |
282 'dependencies': [ | 282 'dependencies': [ |
283 '../extensions/shell/app_shell.gyp:*', | 283 '../extensions/shell/app_shell.gyp:*', |
284 ], | 284 ], |
285 }], | 285 }], |
286 ['envoy==1', { | 286 ['envoy==1', { |
287 'dependencies': [ | 287 'dependencies': [ |
288 '../envoy/envoy.gyp:*', | 288 '../envoy/envoy.gyp:*', |
289 ], | 289 ], |
290 }], | 290 }], |
| 291 ['use_openh264==1', { |
| 292 'dependencies': [ |
| 293 '../third_party/openh264/openh264.gyp:*', |
| 294 ], |
| 295 }], |
291 ], | 296 ], |
292 }, # target_name: All | 297 }, # target_name: All |
293 { | 298 { |
294 'target_name': 'All_syzygy', | 299 'target_name': 'All_syzygy', |
295 'type': 'none', | 300 'type': 'none', |
296 'conditions': [ | 301 'conditions': [ |
297 ['OS=="win" and fastbuild==0 and target_arch=="ia32" and ' | 302 ['OS=="win" and fastbuild==0 and target_arch=="ia32" and ' |
298 '(syzyasan==1 or syzygy_optimize==1)', { | 303 '(syzyasan==1 or syzygy_optimize==1)', { |
299 'dependencies': [ | 304 'dependencies': [ |
300 '../chrome/installer/mini_installer_syzygy.gyp:*', | 305 '../chrome/installer/mini_installer_syzygy.gyp:*', |
(...skipping 1131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1432 'dependencies': [ | 1437 'dependencies': [ |
1433 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1438 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
1434 '../ui/views/views.gyp:views', | 1439 '../ui/views/views.gyp:views', |
1435 '../ui/views/views.gyp:views_unittests', | 1440 '../ui/views/views.gyp:views_unittests', |
1436 ], | 1441 ], |
1437 }, # target_name: macviews_builder | 1442 }, # target_name: macviews_builder |
1438 ], # targets | 1443 ], # targets |
1439 }], # os=='mac' and toolkit_views==1 | 1444 }], # os=='mac' and toolkit_views==1 |
1440 ], # conditions | 1445 ], # conditions |
1441 } | 1446 } |
OLD | NEW |