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

Side by Side Diff: BUILD.gn

Issue 369603004: Work on GN build, mostly in //ui (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android Created 6 years, 5 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
« no previous file with comments | « no previous file | build/repack_action.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 "//third_party/widevine/cdm:version_h", 83 "//third_party/widevine/cdm:version_h",
84 "//third_party/zlib", 84 "//third_party/zlib",
85 "//third_party:jpeg", 85 "//third_party:jpeg",
86 "//tools/gn", 86 "//tools/gn",
87 "//ui/aura", 87 "//ui/aura",
88 "//ui/accessibility", 88 "//ui/accessibility",
89 "//ui/base", 89 "//ui/base",
90 "//ui/events", 90 "//ui/events",
91 "//ui/gfx", 91 "//ui/gfx",
92 "//ui/gl", 92 "//ui/gl",
93 "//ui/keyboard",
93 "//ui/native_theme", 94 "//ui/native_theme",
94 "//ui/resources", 95 "//ui/resources",
95 "//ui/snapshot", 96 "//ui/snapshot",
96 "//ui/strings", 97 "//ui/strings",
97 "//ui/surface", 98 "//ui/surface",
99 "//ui/web_dialogs",
100 "//ui/wm",
98 "//url", 101 "//url",
99 "//v8:v8", 102 "//v8:v8",
100 "//webkit/browser:storage", 103 "//webkit/browser:storage",
101 "//webkit/child", 104 "//webkit/child",
102 ] 105 ]
103 106
104 if (!is_win) { 107 if (!is_win) {
105 deps += [ "//breakpad:symupload" ] 108 deps += [ "//breakpad:symupload" ]
106 } 109 }
107 110
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 "//chrome/common", # Blocked on content. 142 "//chrome/common", # Blocked on content.
140 "//chrome/plugin", # Blocked on content. 143 "//chrome/plugin", # Blocked on content.
141 "//chrome/renderer", # Blocked on content. 144 "//chrome/renderer", # Blocked on content.
142 "//chrome/utility", # Blocked on content. 145 "//chrome/utility", # Blocked on content.
143 "//content", 146 "//content",
144 "//extensions/common/api:extensions_api", 147 "//extensions/common/api:extensions_api",
145 "//pdf", # Not compiled on Android in GYP yet, either. 148 "//pdf", # Not compiled on Android in GYP yet, either.
146 "//ppapi:ppapi_c", 149 "//ppapi:ppapi_c",
147 "//sandbox", 150 "//sandbox",
148 "//third_party/libusb", 151 "//third_party/libusb",
152 "//ui/keyboard", # Blocked on content.
149 153
150 # Seems to not be compiled on Android. Otherwise it will need a config.h. 154 # Seems to not be compiled on Android. Otherwise it will need a config.h.
151 "//third_party/libxslt", 155 "//third_party/libxslt",
152 156
153 "//tools/gn", 157 "//tools/gn",
154 "//ui/aura", 158 "//ui/aura",
155 159
156 # Fails on Android for unknown reasons. 160 # Fails on Android for unknown reasons.
157 "//third_party/flac", 161 "//third_party/flac",
158 "//breakpad:symupload", 162 "//breakpad:symupload",
159 163
160 # TODO(brettw) make Blink work on Android. 164 # TODO(brettw) make Blink work on Android.
161 "//third_party/WebKit/public:all_blink", 165 "//third_party/WebKit/public:all_blink",
162 166
163 # Not tested on Android yet: 167 # Not tested on Android yet:
164 "//third_party/libaddressinput", 168 "//third_party/libaddressinput",
165 "//third_party/ffmpeg", 169 "//third_party/ffmpeg",
170 "//ui/web_dialogs",
171 "//ui/wm",
166 "//webkit/browser:storage", 172 "//webkit/browser:storage",
167 "//webkit/child", 173 "//webkit/child",
168 ] 174 ]
169 } 175 }
170 176
171 if (use_ozone) { 177 if (use_ozone) {
172 deps += [ 178 deps += [
173 "//ui/events/ozone:events_ozone", 179 "//ui/events/ozone:events_ozone",
174 "//ui/events/ozone:events_ozone_evdev", 180 "//ui/events/ozone:events_ozone_evdev",
175 ] 181 ]
176 } 182 }
177 } 183 }
OLDNEW
« no previous file with comments | « no previous file | build/repack_action.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698