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

Side by Side Diff: BUILD.gn

Issue 393953008: Add ui/display, message_center, webview to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge 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/config/features.gni » ('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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 "//third_party/smhasher:pmurhash", 85 "//third_party/smhasher:pmurhash",
86 "//third_party/snappy", 86 "//third_party/snappy",
87 "//third_party/speex", 87 "//third_party/speex",
88 "//third_party/widevine/cdm:version_h", 88 "//third_party/widevine/cdm:version_h",
89 "//third_party/zlib", 89 "//third_party/zlib",
90 "//third_party:jpeg", 90 "//third_party:jpeg",
91 "//tools/gn", 91 "//tools/gn",
92 "//ui/aura", 92 "//ui/aura",
93 "//ui/accessibility", 93 "//ui/accessibility",
94 "//ui/base", 94 "//ui/base",
95 "//ui/display",
95 "//ui/events", 96 "//ui/events",
96 "//ui/gfx", 97 "//ui/gfx",
97 "//ui/gl", 98 "//ui/gl",
98 "//ui/keyboard", 99 "//ui/keyboard",
99 "//ui/native_theme", 100 "//ui/native_theme",
100 "//ui/resources", 101 "//ui/resources",
101 "//ui/snapshot", 102 "//ui/snapshot",
102 "//ui/strings", 103 "//ui/strings",
103 "//ui/surface", 104 "//ui/surface",
104 "//ui/views", 105 "//ui/views",
106 "//ui/views/controls/webview",
105 "//ui/web_dialogs", 107 "//ui/web_dialogs",
106 "//ui/wm", 108 "//ui/wm",
107 "//url", 109 "//url",
108 "//v8:v8", 110 "//v8:v8",
109 "//webkit/browser:storage", 111 "//webkit/browser:storage",
110 "//webkit/child", 112 "//webkit/child",
111 ] 113 ]
112 114
113 if (!is_win) { 115 if (!is_win) {
114 deps += [ "//breakpad:symupload" ] 116 deps += [ "//breakpad:symupload" ]
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 "//third_party/libusb", 166 "//third_party/libusb",
165 "//ui/keyboard", # Blocked on content. 167 "//ui/keyboard", # Blocked on content.
166 168
167 # Seems to not be compiled on Android. Otherwise it will need a config.h. 169 # Seems to not be compiled on Android. Otherwise it will need a config.h.
168 "//third_party/libxslt", 170 "//third_party/libxslt",
169 171
170 # Not relevant to Android. 172 # Not relevant to Android.
171 "//ash", 173 "//ash",
172 "//tools/gn", 174 "//tools/gn",
173 "//ui/aura", 175 "//ui/aura",
176 "//ui/display",
174 "//ui/views", 177 "//ui/views",
178 "//ui/views/controls/webview",
175 179
176 # Fails on Android for unknown reasons. 180 # Fails on Android for unknown reasons.
177 "//third_party/flac", 181 "//third_party/flac",
178 "//breakpad:symupload", 182 "//breakpad:symupload",
179 183
180 # TODO(brettw) make Blink work on Android. 184 # TODO(brettw) make Blink work on Android.
181 "//third_party/WebKit/public:all_blink", 185 "//third_party/WebKit/public:all_blink",
182 186
183 # Not tested on Android yet: 187 # Not tested on Android yet:
184 "//third_party/cld_2", 188 "//third_party/cld_2",
185 "//third_party/libaddressinput", 189 "//third_party/libaddressinput",
186 "//third_party/ffmpeg", 190 "//third_party/ffmpeg",
187 "//ui/web_dialogs", 191 "//ui/web_dialogs",
188 "//ui/wm", 192 "//ui/wm",
189 "//webkit/browser:storage", 193 "//webkit/browser:storage",
190 "//webkit/child", 194 "//webkit/child",
191 ] 195 ]
192 } 196 }
193 197
194 if (use_ozone) { 198 if (use_ozone) {
195 deps += [ 199 deps += [
196 "//ui/events/ozone:events_ozone", 200 "//ui/events/ozone:events_ozone",
197 "//ui/events/ozone:events_ozone_evdev", 201 "//ui/events/ozone:events_ozone_evdev",
198 ] 202 ]
199 } 203 }
200 } 204 }
OLDNEW
« no previous file with comments | « no previous file | build/config/features.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698