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 three targets that we are using to | 5 # This file defines five targets that we are using to track the progress of the |
6 # track the progress of the GYP->GN migration: | 6 # GYP->GN migration: |
7 # | 7 # |
8 # If you run 'ninja gn_build gyp_remaining gyp_groups', and then | 8 # 'both_gn_and_gyp' lists what GN is currently capable of building and should |
9 # run 'ninja', the second ninja invocation should do nothing. This | 9 # match the 'both_gn_and_gyp' target in //BUILD.gn. |
10 # indicates that everything built by a ninja build is in fact | |
11 # listed in one of these targets. | |
12 # | 10 # |
13 # 'gn_all' lists what GN is currently capable of building and should | 11 # 'gyp_all' Should include everything built when building "all"; i.e., if you |
14 # match the 'gn_all' target in //BUILD.gn. | 12 # type 'ninja gyp_all' and then 'ninja all', the second build should do |
| 13 # nothing. 'gyp_all' should just depend on the other four targets. |
| 14 # |
| 15 # 'gyp_groups' lists any empty (group) targets in the GYP build that are not |
| 16 # picked up by both_gn_and_gyp, gyp_only, or gyp_remaining; this is a separate |
| 17 # target to ensure that when we build it, only stamp targets file are we don't |
| 18 # accidentally pick up something not listed in one of the other two targets. |
| 19 # |
| 20 # 'gyp_only' lists any targets that are not meant to be ported over to the GN |
| 21 # build. |
15 # | 22 # |
16 # 'gyp_remaining' lists all of the targets that still need to be converted, | 23 # 'gyp_remaining' lists all of the targets that still need to be converted, |
17 # i.e., all of the other (non-empty) targets that a GYP build | 24 # i.e., all of the other (non-empty) targets that a GYP build will build. |
18 # will build. | |
19 # | 25 # |
20 # 'gyp_groups' lists any empty (group) targets in the GYP build that | 26 # TODO(GYP): crbug.com/481694. Add a build step to the bot that enforces the |
21 # are not picked up by gn_all or gyp_remaining; this is a | 27 # above contracts. |
22 # separate target to ensure that when we build it, only | |
23 # stamp targets file are we don't accidentally pick up something | |
24 # not listed in one of the other two targets. | |
25 # | |
26 # TODO(GYP), TODO(dpranke) Add a build step to the bot that enforces the | |
27 # above contracts. | |
28 | 28 |
29 { | 29 { |
30 'targets': [ | 30 'targets': [ |
31 { | 31 { |
32 # This target should mirror the structure of //:gn_all | 32 'target_name': 'gyp_all', |
33 # as closely as possible, for ease of comparison. | 33 'type': 'none', |
34 'target_name': 'gn_all', | 34 'dependencies': [ |
| 35 'both_gn_and_gyp', |
| 36 'gyp_groups', |
| 37 'gyp_only', |
| 38 'gyp_remaining', |
| 39 ] |
| 40 }, |
| 41 { |
| 42 # This target should mirror the structure of //:both_gn_and_gyp |
| 43 # in src/BUILD.gn as closely as possible, for ease of comparison. |
| 44 'target_name': 'both_gn_and_gyp', |
35 'type': 'none', | 45 'type': 'none', |
36 'dependencies': [ | 46 'dependencies': [ |
37 '../base/base.gyp:base_i18n_perftests', | 47 '../base/base.gyp:base_i18n_perftests', |
38 '../base/base.gyp:base_perftests', | 48 '../base/base.gyp:base_perftests', |
39 '../base/base.gyp:base_unittests', | 49 '../base/base.gyp:base_unittests', |
40 '../base/base.gyp:build_utf8_validator_tables#host', | 50 '../base/base.gyp:build_utf8_validator_tables#host', |
41 '../base/base.gyp:check_example', | 51 '../base/base.gyp:check_example', |
42 '../cc/cc_tests.gyp:cc_perftests', | 52 '../cc/cc_tests.gyp:cc_perftests', |
43 '../cc/cc_tests.gyp:cc_unittests', | 53 '../cc/cc_tests.gyp:cc_unittests', |
44 '../cc/blink/cc_blink_tests.gyp:cc_blink_unittests', | 54 '../cc/blink/cc_blink_tests.gyp:cc_blink_unittests', |
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
695 'chromium_builder_nacl_sdk', | 705 'chromium_builder_nacl_sdk', |
696 'chromium_builder_lkgr_drmemory_win', | 706 'chromium_builder_lkgr_drmemory_win', |
697 'chromium_builder_dbg_tsan_win', | 707 'chromium_builder_dbg_tsan_win', |
698 ], | 708 ], |
699 }], | 709 }], |
700 ], | 710 ], |
701 }, | 711 }, |
702 ] | 712 ] |
703 } | 713 } |
704 | 714 |
OLD | NEW |