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

Side by Side Diff: tools/gn/secondary/build/config/BUILD.gn

Issue 21114002: Add initial prototype for the GN meta-buildsystem. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add owners and readme Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 config("my_msvs") {
2 includes = [ "../.." ]
3 cflags = [
4 "/Od", "/WX", "/Zi", "/Gy", "/GS", "/RTC1", "/EHsc",
5 ]
6 defines = [
7 "CHROMIUM_BUILD",
8 "TOOLKIT_VIEWS=1",
9 "USE_LIBJPEG_TURBO=1",
10 "ENABLE_ONE_CLICK_SIGNIN",
11 "ENABLE_REMOTING=1",
12 "ENABLE_WEBRTC=1",
13 "ENABLE_CONFIGURATION_POLICY",
14 "ENABLE_INPUT_SPEECH",
15 "ENABLE_NOTIFICATIONS",
16 "ENABLE_GPU=1",
17 "ENABLE_EGLIMAGE=1",
18 "ENABLE_TASK_MANAGER=1",
19 "ENABLE_EXTENSIONS=1",
20 "ENABLE_PLUGIN_INSTALLATION=1",
21 "ENABLE_PLUGINS=1",
22 "ENABLE_SESSION_SERVICE=1",
23 "ENABLE_THEMES=1",
24 "ENABLE_AUTOFILL_DIALOG=1",
25 "ENABLE_BACKGROUND=1",
26 "ENABLE_AUTOMATION=1",
27 "ENABLE_GOOGLE_NOW=1",
28 "ENABLE_LANGUAGE_DETECTION=1",
29 "ENABLE_PRINTING=1",
30 "ENABLE_CAPTIVE_PORTAL_DETECTION=1",
31 "ENABLE_APP_LIST=1",
32 "ENABLE_MESSAGE_CENTER=1",
33 "ENABLE_SETTINGS_APP=1",
34 "ENABLE_MANAGED_USERS=1",
35 ]
36 }
37
38 config("feature_flags") {
39 #defines =
40 }
41
42 config("debug") {
43 defines = [
44 "_DEBUG",
45 "DYNAMIC_ANNOTATIONS_ENABLED=1",
46 "WTF_USE_DYNAMIC_ANNOTATIONS=1",
47 ]
48 }
49
50 config("release") {
51
52 }
OLDNEW
« no previous file with comments | « tools/gn/secondary/base/third_party/dynamic_annotations/BUILD.gn ('k') | tools/gn/secondary/build/config/BUILDCONFIG.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698