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

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: 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') | ui/shell_dialogs/BUILD.gn » ('J')
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 "//ppapi:ppapi_c", 160 "//ppapi:ppapi_c",
159 "//sandbox", 161 "//sandbox",
160 "//third_party/libusb", 162 "//third_party/libusb",
161 "//ui/keyboard", # Blocked on content. 163 "//ui/keyboard", # Blocked on content.
162 164
163 # Seems to not be compiled on Android. Otherwise it will need a config.h. 165 # Seems to not be compiled on Android. Otherwise it will need a config.h.
164 "//third_party/libxslt", 166 "//third_party/libxslt",
165 167
166 "//tools/gn", 168 "//tools/gn",
167 "//ui/aura", 169 "//ui/aura",
170 "//ui/display",
168 "//ui/views", 171 "//ui/views",
172 "//ui/views/controls/webview",
169 173
170 # Fails on Android for unknown reasons. 174 # Fails on Android for unknown reasons.
171 "//third_party/flac", 175 "//third_party/flac",
172 "//breakpad:symupload", 176 "//breakpad:symupload",
173 177
174 # TODO(brettw) make Blink work on Android. 178 # TODO(brettw) make Blink work on Android.
175 "//third_party/WebKit/public:all_blink", 179 "//third_party/WebKit/public:all_blink",
176 180
177 # Not tested on Android yet: 181 # Not tested on Android yet:
178 "//third_party/cld_2", 182 "//third_party/cld_2",
179 "//third_party/libaddressinput", 183 "//third_party/libaddressinput",
180 "//third_party/ffmpeg", 184 "//third_party/ffmpeg",
181 "//ui/web_dialogs", 185 "//ui/web_dialogs",
182 "//ui/wm", 186 "//ui/wm",
183 "//webkit/browser:storage", 187 "//webkit/browser:storage",
184 "//webkit/child", 188 "//webkit/child",
185 ] 189 ]
186 } 190 }
187 191
188 if (use_ozone) { 192 if (use_ozone) {
189 deps += [ 193 deps += [
190 "//ui/events/ozone:events_ozone", 194 "//ui/events/ozone:events_ozone",
191 "//ui/events/ozone:events_ozone_evdev", 195 "//ui/events/ozone:events_ozone_evdev",
192 ] 196 ]
193 } 197 }
194 } 198 }
OLDNEW
« no previous file with comments | « no previous file | build/config/features.gni » ('j') | ui/shell_dialogs/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698