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

Side by Side Diff: BUILD.gn

Issue 399683005: Enable more tests in GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more android printing mode 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 | ash/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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 "//third_party/re2", 86 "//third_party/re2",
87 "//third_party/smhasher:cityhash", 87 "//third_party/smhasher:cityhash",
88 "//third_party/smhasher:murmurhash3", 88 "//third_party/smhasher:murmurhash3",
89 "//third_party/smhasher:pmurhash", 89 "//third_party/smhasher:pmurhash",
90 "//third_party/snappy", 90 "//third_party/snappy",
91 "//third_party/speex", 91 "//third_party/speex",
92 "//third_party/widevine/cdm:version_h", 92 "//third_party/widevine/cdm:version_h",
93 "//third_party/zlib", 93 "//third_party/zlib",
94 "//third_party:jpeg", 94 "//third_party:jpeg",
95 "//tools/gn", 95 "//tools/gn",
96 "//ui/app_list",
96 "//ui/aura", 97 "//ui/aura",
97 "//ui/accessibility", 98 "//ui/accessibility",
98 "//ui/base", 99 "//ui/base",
99 "//ui/display", 100 "//ui/display",
100 "//ui/events", 101 "//ui/events",
101 "//ui/gfx", 102 "//ui/gfx",
102 "//ui/gl", 103 "//ui/gl",
103 "//ui/keyboard", 104 "//ui/keyboard",
104 "//ui/native_theme", 105 "//ui/native_theme",
105 "//ui/resources", 106 "//ui/resources",
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 "//breakpad:symupload", 187 "//breakpad:symupload",
187 188
188 # TODO(brettw) make Blink work on Android. 189 # TODO(brettw) make Blink work on Android.
189 "//third_party/WebKit/public:all_blink", 190 "//third_party/WebKit/public:all_blink",
190 191
191 # Not tested on Android yet: 192 # Not tested on Android yet:
192 "//google_apis/gcm", 193 "//google_apis/gcm",
193 "//third_party/cld_2", 194 "//third_party/cld_2",
194 "//third_party/libaddressinput", 195 "//third_party/libaddressinput",
195 "//third_party/ffmpeg", 196 "//third_party/ffmpeg",
197 "//ui/app_list",
196 "//ui/web_dialogs", 198 "//ui/web_dialogs",
197 "//ui/wm", 199 "//ui/wm",
198 "//webkit/browser:storage", 200 "//webkit/browser:storage",
199 "//webkit/child", 201 "//webkit/child",
200 ] 202 ]
201 } 203 }
202 204
203 if (use_ozone) { 205 if (use_ozone) {
204 deps += [ 206 deps += [
205 "//ui/events/ozone:events_ozone", 207 "//ui/events/ozone:events_ozone",
206 "//ui/events/ozone:events_ozone_evdev", 208 "//ui/events/ozone:events_ozone_evdev",
207 ] 209 ]
208 } 210 }
209 } 211 }
OLDNEW
« no previous file with comments | « no previous file | ash/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698