| 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 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 521 '../testing/gtest.gyp:gtest_main', | 521 '../testing/gtest.gyp:gtest_main', |
| 522 '../third_party/codesighs/codesighs.gyp:msdump2symdb', | 522 '../third_party/codesighs/codesighs.gyp:msdump2symdb', |
| 523 '../third_party/codesighs/codesighs.gyp:msmap2tsv', | 523 '../third_party/codesighs/codesighs.gyp:msmap2tsv', |
| 524 '../third_party/pdfium/samples/samples.gyp:pdfium_diff', | 524 '../third_party/pdfium/samples/samples.gyp:pdfium_diff', |
| 525 '../win8/win8.gyp:metro_viewer', | 525 '../win8/win8.gyp:metro_viewer', |
| 526 ], | 526 ], |
| 527 }], | 527 }], |
| 528 ['chromecast==1', { | 528 ['chromecast==1', { |
| 529 'dependencies': [ | 529 'dependencies': [ |
| 530 '../chromecast/chromecast.gyp:cast_shell', | 530 '../chromecast/chromecast.gyp:cast_shell', |
| 531 ] | 531 ], |
| 532 }] | 532 }], |
| 533 ['use_openh264==1', { |
| 534 'dependencies': [ |
| 535 '../third_party/openh264/openh264.gyp:openh264_common', |
| 536 '../third_party/openh264/openh264.gyp:openh264_processing', |
| 537 '../third_party/openh264/openh264.gyp:openh264_encoder', |
| 538 '../third_party/openh264/openh264.gyp:openh264_decoder', |
| 539 ], |
| 540 }], |
| 533 ], | 541 ], |
| 534 }, | 542 }, |
| 535 { | 543 { |
| 536 'target_name': 'gyp_remaining', | 544 'target_name': 'gyp_remaining', |
| 537 'type': 'none', | 545 'type': 'none', |
| 538 'conditions': [ | 546 'conditions': [ |
| 539 ['remoting==1', { | 547 ['remoting==1', { |
| 540 'dependencies': [ | 548 'dependencies': [ |
| 541 '../remoting/app_remoting_webapp.gyp:ar_sample_app', # crbug.com/47
1916 | 549 '../remoting/app_remoting_webapp.gyp:ar_sample_app', # crbug.com/47
1916 |
| 542 ], | 550 ], |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 794 ['OS=="android" and target_arch != "x64"', { | 802 ['OS=="android" and target_arch != "x64"', { |
| 795 'dependencies': [ | 803 'dependencies': [ |
| 796 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' | 804 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' |
| 797 ], | 805 ], |
| 798 }], | 806 }], |
| 799 ], | 807 ], |
| 800 }, | 808 }, |
| 801 ] | 809 ] |
| 802 } | 810 } |
| 803 | 811 |
| OLD | NEW |