| 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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 '../sandbox/sandbox.gyp:pocdll', | 506 '../sandbox/sandbox.gyp:pocdll', |
| 507 '../sandbox/sandbox.gyp:sandbox_poc', | 507 '../sandbox/sandbox.gyp:sandbox_poc', |
| 508 '../sandbox/sandbox.gyp:sbox_integration_tests', | 508 '../sandbox/sandbox.gyp:sbox_integration_tests', |
| 509 '../sandbox/sandbox.gyp:sbox_unittests', | 509 '../sandbox/sandbox.gyp:sbox_unittests', |
| 510 '../sandbox/sandbox.gyp:sbox_validation_tests', | 510 '../sandbox/sandbox.gyp:sbox_validation_tests', |
| 511 '../testing/gtest.gyp:gtest_main', | 511 '../testing/gtest.gyp:gtest_main', |
| 512 '../third_party/codesighs/codesighs.gyp:msdump2symdb', | 512 '../third_party/codesighs/codesighs.gyp:msdump2symdb', |
| 513 '../third_party/codesighs/codesighs.gyp:msmap2tsv', | 513 '../third_party/codesighs/codesighs.gyp:msmap2tsv', |
| 514 '../third_party/pdfium/samples/samples.gyp:pdfium_diff', | 514 '../third_party/pdfium/samples/samples.gyp:pdfium_diff', |
| 515 ], | 515 ], |
| 516 'conditions': [ |
| 517 ['component!="shared_library"', { |
| 518 'dependencies': [ |
| 519 '../chrome/installer/mini_installer.gyp:next_version_mini_instal
ler', |
| 520 ], |
| 521 }], |
| 522 ], |
| 516 }], | 523 }], |
| 517 ['chromecast==1', { | 524 ['chromecast==1', { |
| 518 'dependencies': [ | 525 'dependencies': [ |
| 519 '../chromecast/chromecast.gyp:cast_shell', | 526 '../chromecast/chromecast.gyp:cast_shell', |
| 520 ], | 527 ], |
| 521 }], | 528 }], |
| 522 ['use_openh264==1', { | 529 ['use_openh264==1', { |
| 523 'dependencies': [ | 530 'dependencies': [ |
| 524 '../third_party/openh264/openh264.gyp:openh264_common', | 531 '../third_party/openh264/openh264.gyp:openh264_common', |
| 525 '../third_party/openh264/openh264.gyp:openh264_processing', | 532 '../third_party/openh264/openh264.gyp:openh264_processing', |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 }], | 779 }], |
| 773 ['OS=="android" and target_arch != "x64"', { | 780 ['OS=="android" and target_arch != "x64"', { |
| 774 'dependencies': [ | 781 'dependencies': [ |
| 775 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' | 782 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' |
| 776 ], | 783 ], |
| 777 }], | 784 }], |
| 778 ], | 785 ], |
| 779 }, | 786 }, |
| 780 ] | 787 ] |
| 781 } | 788 } |
| OLD | NEW |