OLD | NEW |
1 [goma] | 1 [goma] |
2 # Controls whether goma is enabled or not. If you generally use goma but | 2 # Controls whether goma is enabled or not. If you generally use goma but |
3 # want to disable goma for a single build, consider using the environment | 3 # want to disable goma for a single build, consider using the environment |
4 # variable GOMA_DISABLED. | 4 # variable GOMA_DISABLED. |
5 enabled = False | 5 enabled = False |
6 install = "$GOMA_DIR" | 6 install = "$GOMA_DIR" |
7 | 7 |
8 [xcode] | 8 [xcode] |
9 # Controls settings for the generated Xcode project. If jobs is non-zero | 9 # Controls settings for the generated Xcode project. If jobs is non-zero |
10 # it will be passed to the ninja invocation in Xcode project. | 10 # it will be passed to the ninja invocation in Xcode project. |
11 jobs = 0 | 11 jobs = 0 |
12 | 12 |
13 [build] | 13 [build] |
14 # Controls the build output. The only supported values are "64-bit", "32-bit" | 14 # Controls the build output. The only supported values are "64-bit", "32-bit" |
15 # and "multi" (for a fat binary supporting both "32-bit" and "64-bit" cpus). | 15 # and "fat" (for a fat binary supporting both "32-bit" and "64-bit" cpus). |
16 arch = "64-bit" | 16 arch = "64-bit" |
17 | 17 |
18 [gn_args] | 18 [gn_args] |
19 # Values in that section will be copied verbatim in the generated args.gn file. | 19 # Values in that section will be copied verbatim in the generated args.gn file. |
20 target_os = "ios" | 20 target_os = "ios" |
21 | 21 |
22 [filters] | 22 [filters] |
23 # List of target files to pass to --filters argument of gn gen when generating | 23 # List of target files to pass to --filters argument of gn gen when generating |
24 # the Xcode project. By default, list all targets from ios/ and ios_internal/ | 24 # the Xcode project. By default, list all targets from ios/ and ios_internal/ |
25 # and the targets corresponding to the unit tests run on the bots. | 25 # and the targets corresponding to the unit tests run on the bots. |
26 filter_0 = "//base:base_unittests" | 26 filter_0 = "//base:base_unittests" |
27 filter_1 = "//components:components_unittests" | 27 filter_1 = "//components:components_unittests" |
28 filter_2 = "//crypto:crypto_unittests" | 28 filter_2 = "//crypto:crypto_unittests" |
29 filter_3 = "//google_apis:google_apis_unittests" | 29 filter_3 = "//google_apis:google_apis_unittests" |
30 filter_4 = "//ios/*" | 30 filter_4 = "//ios/*" |
31 filter_5 = "//ios_internal/*" | 31 filter_5 = "//ios_internal/*" |
32 filter_6 = "//net:net_unittests" | 32 filter_6 = "//net:net_unittests" |
33 filter_7 = "//skia:skia_unittests" | 33 filter_7 = "//skia:skia_unittests" |
34 filter_8 = "//sql:sql_unittests" | 34 filter_8 = "//sql:sql_unittests" |
35 filter_9 = "//ui/base:ui_base_unittests" | 35 filter_9 = "//ui/base:ui_base_unittests" |
36 filter_a = "//ui/gfx:gfx_unittests" | 36 filter_a = "//ui/gfx:gfx_unittests" |
37 filter_b = "//url:url_unittests" | 37 filter_b = "//url:url_unittests" |
OLD | NEW |