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

Side by Side Diff: BUILD.gn

Issue 553693002: Move ui:unittests target into ui/base/BUILD.gn (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix for Android. Now for real. Created 6 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 | « no previous file | ui/BUILD.gn » ('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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 "//third_party/smhasher:pmurhash", 100 "//third_party/smhasher:pmurhash",
101 "//third_party/snappy", 101 "//third_party/snappy",
102 "//third_party/speex", 102 "//third_party/speex",
103 "//third_party/usrsctp", 103 "//third_party/usrsctp",
104 "//third_party/widevine/cdm:version_h", 104 "//third_party/widevine/cdm:version_h",
105 "//third_party/webrtc", 105 "//third_party/webrtc",
106 "//third_party/zlib", 106 "//third_party/zlib",
107 "//third_party:jpeg", 107 "//third_party:jpeg",
108 "//tools/gn", 108 "//tools/gn",
109 "//tools/imagediff($host_toolchain)", 109 "//tools/imagediff($host_toolchain)",
110 "//ui:ui_unittests", 110 "//ui/accessibility",
111 "//ui/app_list", 111 "//ui/app_list",
112 "//ui/aura", 112 "//ui/aura",
113 "//ui/accessibility",
114 "//ui/base", 113 "//ui/base",
115 "//ui/display", 114 "//ui/display",
116 "//ui/events", 115 "//ui/events",
117 "//ui/gfx", 116 "//ui/gfx",
118 "//ui/gl", 117 "//ui/gl",
119 "//ui/keyboard", 118 "//ui/keyboard",
120 "//ui/native_theme", 119 "//ui/native_theme",
121 "//ui/resources", 120 "//ui/resources",
122 "//ui/snapshot", 121 "//ui/snapshot",
123 "//ui/strings", 122 "//ui/strings",
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 "//third_party/flac", 219 "//third_party/flac",
221 "//breakpad:symupload", 220 "//breakpad:symupload",
222 221
223 # Not tested on Android yet: 222 # Not tested on Android yet:
224 "//google_apis/gcm", 223 "//google_apis/gcm",
225 "//remoting/client/plugin", 224 "//remoting/client/plugin",
226 "//storage/browser", 225 "//storage/browser",
227 "//third_party/cld_2", 226 "//third_party/cld_2",
228 "//third_party/libaddressinput", 227 "//third_party/libaddressinput",
229 "//third_party/ffmpeg", 228 "//third_party/ffmpeg",
230 "//ui:ui_unittests",
231 "//ui/app_list", 229 "//ui/app_list",
232 "//ui/web_dialogs", 230 "//ui/web_dialogs",
233 "//ui/wm", 231 "//ui/wm",
234 ] 232 ]
235 } 233 }
236 234
237 if (use_ozone) { 235 if (use_ozone) {
238 deps += [ 236 deps += [
239 "//ui/ozone", 237 "//ui/ozone",
240 "//ui/ozone/demo", 238 "//ui/ozone/demo",
241 ] 239 ]
242 } 240 }
243 241
244 # Non-mobile builds. 242 # Non-mobile builds.
245 if (!is_android && !is_ios) { 243 if (!is_android && !is_ios) {
246 deps += [ 244 deps += [
247 "//device/usb", 245 "//device/usb",
248 ] 246 ]
249 } 247 }
250 } 248 }
OLDNEW
« no previous file with comments | « no previous file | ui/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698