| 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 560 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 571 'dependencies': [ | 571 'dependencies': [ |
| 572 '../ui/aura/aura.gyp:aura_unittests_run', | 572 '../ui/aura/aura.gyp:aura_unittests_run', |
| 573 '../ui/wm/wm.gyp:wm_unittests_run', | 573 '../ui/wm/wm.gyp:wm_unittests_run', |
| 574 ], | 574 ], |
| 575 }], | 575 }], |
| 576 ['enable_webrtc==1 or OS!="android"', { | 576 ['enable_webrtc==1 or OS!="android"', { |
| 577 'dependencies': [ | 577 'dependencies': [ |
| 578 '../jingle/jingle.gyp:jingle_unittests_run', | 578 '../jingle/jingle.gyp:jingle_unittests_run', |
| 579 ], | 579 ], |
| 580 }], | 580 }], |
| 581 ['disable_nacl==0 and disable_nacl_untrusted==0', { |
| 582 'dependencies': [ |
| 583 '../components/nacl.gyp:nacl_loader_unittests_run', |
| 584 ] |
| 585 }], |
| 581 ], | 586 ], |
| 582 }], | 587 }], |
| 583 ['use_openssl==1', { | 588 ['use_openssl==1', { |
| 584 'dependencies': [ | 589 'dependencies': [ |
| 585 # TODO(GYP): All of these targets still need to be converted. | 590 # TODO(GYP): All of these targets still need to be converted. |
| 586 '../third_party/boringssl/boringssl_tests.gyp:boringssl_ecdsa_test', | 591 '../third_party/boringssl/boringssl_tests.gyp:boringssl_ecdsa_test', |
| 587 '../third_party/boringssl/boringssl_tests.gyp:boringssl_bn_test', | 592 '../third_party/boringssl/boringssl_tests.gyp:boringssl_bn_test', |
| 588 '../third_party/boringssl/boringssl_tests.gyp:boringssl_pqueue_test'
, | 593 '../third_party/boringssl/boringssl_tests.gyp:boringssl_pqueue_test'
, |
| 589 '../third_party/boringssl/boringssl_tests.gyp:boringssl_digest_test'
, | 594 '../third_party/boringssl/boringssl_tests.gyp:boringssl_digest_test'
, |
| 590 '../third_party/boringssl/boringssl_tests.gyp:boringssl_cipher_test'
, | 595 '../third_party/boringssl/boringssl_tests.gyp:boringssl_cipher_test'
, |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 698 'dependencies': [ | 703 'dependencies': [ |
| 699 # TODO(GYP): All of these targets need to be ported over. | 704 # TODO(GYP): All of these targets need to be ported over. |
| 700 '../components/components.gyp:policy_win64', | 705 '../components/components.gyp:policy_win64', |
| 701 ] | 706 ] |
| 702 }], | 707 }], |
| 703 ], | 708 ], |
| 704 }, | 709 }, |
| 705 ] | 710 ] |
| 706 } | 711 } |
| 707 | 712 |
| OLD | NEW |