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 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
532 '../sandbox/sandbox.gyp:pocdll', | 532 '../sandbox/sandbox.gyp:pocdll', |
533 '../sandbox/sandbox.gyp:sandbox_poc', | 533 '../sandbox/sandbox.gyp:sandbox_poc', |
534 '../sandbox/sandbox.gyp:sbox_integration_tests', | 534 '../sandbox/sandbox.gyp:sbox_integration_tests', |
535 '../sandbox/sandbox.gyp:sbox_unittests', | 535 '../sandbox/sandbox.gyp:sbox_unittests', |
536 '../sandbox/sandbox.gyp:sbox_validation_tests', | 536 '../sandbox/sandbox.gyp:sbox_validation_tests', |
537 '../testing/gtest.gyp:gtest_main', | 537 '../testing/gtest.gyp:gtest_main', |
538 '../third_party/codesighs/codesighs.gyp:msdump2symdb', | 538 '../third_party/codesighs/codesighs.gyp:msdump2symdb', |
539 '../third_party/codesighs/codesighs.gyp:msmap2tsv', | 539 '../third_party/codesighs/codesighs.gyp:msmap2tsv', |
540 '../third_party/pdfium/samples/samples.gyp:pdfium_diff', | 540 '../third_party/pdfium/samples/samples.gyp:pdfium_diff', |
541 ], | 541 ], |
| 542 'conditions': [ |
| 543 ['component!="shared_library" or target_arch!="ia32"', { |
| 544 'dependencies': [ |
| 545 '../chrome/installer/mini_installer.gyp:next_version_mini_instal
ler', |
| 546 ], |
| 547 }], |
| 548 ], |
542 }], | 549 }], |
543 ['chromecast==1', { | 550 ['chromecast==1', { |
544 'dependencies': [ | 551 'dependencies': [ |
545 '../chromecast/chromecast.gyp:cast_shell', | 552 '../chromecast/chromecast.gyp:cast_shell', |
546 ], | 553 ], |
547 }], | 554 }], |
548 ['use_openh264==1', { | 555 ['use_openh264==1', { |
549 'dependencies': [ | 556 'dependencies': [ |
550 '../third_party/openh264/openh264.gyp:openh264_common', | 557 '../third_party/openh264/openh264.gyp:openh264_common', |
551 '../third_party/openh264/openh264.gyp:openh264_processing', | 558 '../third_party/openh264/openh264.gyp:openh264_processing', |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
766 }], | 773 }], |
767 ['OS=="android" and target_arch != "x64"', { | 774 ['OS=="android" and target_arch != "x64"', { |
768 'dependencies': [ | 775 'dependencies': [ |
769 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' | 776 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' |
770 ], | 777 ], |
771 }], | 778 }], |
772 ], | 779 ], |
773 }, | 780 }, |
774 ] | 781 ] |
775 } | 782 } |
OLD | NEW |