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

Side by Side Diff: BUILD.gn

Issue 702903004: Add chrome perf tests and sniffer to GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 | build/config/linux/pkg-config.py » ('j') | third_party/harfbuzz-ng/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 20 matching lines...) Expand all
31 deps = [ 31 deps = [
32 "//apps", 32 "//apps",
33 "//ash", 33 "//ash",
34 "//cc", 34 "//cc",
35 "//cc/blink", 35 "//cc/blink",
36 "//chrome/browser", 36 "//chrome/browser",
37 "//chrome/browser/devtools", 37 "//chrome/browser/devtools",
38 "//chrome/common", 38 "//chrome/common",
39 "//chrome/plugin", 39 "//chrome/plugin",
40 "//chrome/renderer", 40 "//chrome/renderer",
41 "//chrome/test",
42 "//chrome/tools",
41 "//chrome/utility", 43 "//chrome/utility",
42 "//components:all_components", 44 "//components:all_components",
43 "//content", 45 "//content",
44 "//content/shell:content_shell", 46 "//content/shell:content_shell",
45 "//content/test:test_support", 47 "//content/test:test_support",
46 "//crypto", 48 "//crypto",
47 "//device/battery", 49 "//device/battery",
48 "//device/bluetooth", 50 "//device/bluetooth",
49 "//device/nfc", 51 "//device/nfc",
50 "//extensions/browser", 52 "//extensions/browser",
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 ] 200 ]
199 } 201 }
200 202
201 deps -= [ 203 deps -= [
202 "//apps", # Needs testing. 204 "//apps", # Needs testing.
203 "//chrome/browser", 205 "//chrome/browser",
204 "//chrome/browser/devtools", 206 "//chrome/browser/devtools",
205 "//chrome/common", 207 "//chrome/common",
206 "//chrome/plugin", 208 "//chrome/plugin",
207 "//chrome/renderer", 209 "//chrome/renderer",
210 "//chrome/test",
211 "//chrome/tools",
208 "//chrome/utility", 212 "//chrome/utility",
209 "//content/shell:content_shell", 213 "//content/shell:content_shell",
210 "//extensions/browser", 214 "//extensions/browser",
211 "//extensions/common", 215 "//extensions/common",
212 "//extensions/common/api", 216 "//extensions/common/api",
213 "//extensions/renderer", 217 "//extensions/renderer",
214 "//pdf", # Not compiled on Android in GYP yet, either. 218 "//pdf", # Not compiled on Android in GYP yet, either.
215 "//ppapi:ppapi_c", 219 "//ppapi:ppapi_c",
216 "//third_party/libusb", 220 "//third_party/libusb",
217 "//ui/keyboard", # Blocked on content. 221 "//ui/keyboard", # Blocked on content.
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 ] 253 ]
250 } 254 }
251 255
252 # Non-mobile builds. 256 # Non-mobile builds.
253 if (!is_android && !is_ios) { 257 if (!is_android && !is_ios) {
254 deps += [ 258 deps += [
255 "//device/usb", 259 "//device/usb",
256 ] 260 ]
257 } 261 }
258 } 262 }
OLDNEW
« no previous file with comments | « no previous file | build/config/linux/pkg-config.py » ('j') | third_party/harfbuzz-ng/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698