Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Side by Side Diff: ios/build/tools/setup-gn.config

Issue 2343853002: Upstream helper script to build Chromium on iOS and update instructions. (Closed)
Patch Set: Fix comment. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ios/build/tools/convert_gn_xcodeproj.py ('k') | ios/build/tools/setup-gn.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 [goma]
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
4 # variable GOMA_DISABLED.
5 enabled = False
6 install = "$GOMA_DIR"
7
8 [xcode]
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.
11 jobs = 0
12
13 [build]
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).
16 arch = "64-bit"
17
18 [gn_args]
19 # Values in that section will be copied verbatim in the generated args.gn file.
20 target_os = "ios"
21
22 [filters]
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/
25 # and the targets corresponding to the unit tests run on the bots.
26 filter_0 = "//base:base_unittests"
27 filter_1 = "//components:components_unittests"
28 filter_2 = "//crypto:crypto_unittests"
29 filter_3 = "//google_apis:google_apis_unittests"
30 filter_4 = "//ios/*"
31 filter_5 = "//ios_internal/*"
32 filter_6 = "//net:net_unittests"
33 filter_7 = "//skia:skia_unittests"
34 filter_8 = "//sql:sql_unittests"
35 filter_9 = "//ui/base:ui_base_unittests"
36 filter_a = "//ui/gfx:gfx_unittests"
37 filter_b = "//url:url_unittests"
OLDNEW
« no previous file with comments | « ios/build/tools/convert_gn_xcodeproj.py ('k') | ios/build/tools/setup-gn.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698