OLD | NEW |
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2015 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 # This file defines five targets that we are using to track the progress of the | 5 # This file defines five targets that we are using to track the progress of the |
6 # GYP->GN migration: | 6 # GYP->GN migration: |
7 # | 7 # |
8 # 'both_gn_and_gyp' lists what GN is currently capable of building and should | 8 # 'both_gn_and_gyp' lists what GN is currently capable of building and should |
9 # match the 'both_gn_and_gyp' target in //BUILD.gn. | 9 # match the 'both_gn_and_gyp' target in //BUILD.gn. |
10 # | 10 # |
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
515 '../testing/gtest.gyp:gtest_main', | 515 '../testing/gtest.gyp:gtest_main', |
516 '../third_party/codesighs/codesighs.gyp:msdump2symdb', | 516 '../third_party/codesighs/codesighs.gyp:msdump2symdb', |
517 '../third_party/codesighs/codesighs.gyp:msmap2tsv', | 517 '../third_party/codesighs/codesighs.gyp:msmap2tsv', |
518 '../third_party/pdfium/samples/samples.gyp:pdfium_diff', | 518 '../third_party/pdfium/samples/samples.gyp:pdfium_diff', |
519 '../win8/win8.gyp:metro_viewer', | 519 '../win8/win8.gyp:metro_viewer', |
520 ], | 520 ], |
521 }], | 521 }], |
522 ['chromecast==1', { | 522 ['chromecast==1', { |
523 'dependencies': [ | 523 'dependencies': [ |
524 '../chromecast/chromecast.gyp:cast_shell', | 524 '../chromecast/chromecast.gyp:cast_shell', |
525 ] | 525 ], |
526 }] | 526 }], |
| 527 ['use_openh264==1', { |
| 528 'dependencies': [ |
| 529 '../third_party/openh264/openh264.gyp:openh264_common', |
| 530 '../third_party/openh264/openh264.gyp:openh264_processing', |
| 531 '../third_party/openh264/openh264.gyp:openh264_encoder', |
| 532 '../third_party/openh264/openh264.gyp:openh264_decoder', |
| 533 ], |
| 534 }], |
527 ], | 535 ], |
528 }, | 536 }, |
529 { | 537 { |
530 'target_name': 'gyp_remaining', | 538 'target_name': 'gyp_remaining', |
531 'type': 'none', | 539 'type': 'none', |
532 'conditions': [ | 540 'conditions': [ |
533 ['remoting==1', { | 541 ['remoting==1', { |
534 'dependencies': [ | 542 'dependencies': [ |
535 '../remoting/app_remoting_webapp.gyp:ar_sample_app', # crbug.com/47
1916 | 543 '../remoting/app_remoting_webapp.gyp:ar_sample_app', # crbug.com/47
1916 |
536 ], | 544 ], |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
788 ['OS=="android" and target_arch != "x64"', { | 796 ['OS=="android" and target_arch != "x64"', { |
789 'dependencies': [ | 797 'dependencies': [ |
790 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' | 798 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' |
791 ], | 799 ], |
792 }], | 800 }], |
793 ], | 801 ], |
794 }, | 802 }, |
795 ] | 803 ] |
796 } | 804 } |
797 | 805 |
OLD | NEW |