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

Side by Side Diff: BUILD.gn

Issue 407243002: Some linking fixes for 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
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 13 matching lines...) Expand all
24 "//chrome/browser/devtools", 24 "//chrome/browser/devtools",
25 "//chrome/browser/ui", 25 "//chrome/browser/ui",
26 "//chrome/browser/ui/views", 26 "//chrome/browser/ui/views",
27 "//chrome/common", 27 "//chrome/common",
28 "//chrome/plugin", 28 "//chrome/plugin",
29 "//chrome/renderer", 29 "//chrome/renderer",
30 "//chrome/service", 30 "//chrome/service",
31 "//chrome/utility", 31 "//chrome/utility",
32 "//components:all_components", 32 "//components:all_components",
33 "//content", 33 "//content",
34 "//content/shell:content_shell",
34 "//crypto", 35 "//crypto",
35 "//device/bluetooth", 36 "//device/bluetooth",
36 "//device/nfc", 37 "//device/nfc",
37 "//device/usb", 38 "//device/usb",
38 "//extensions/common/api", 39 "//extensions/common/api",
39 "//gin", 40 "//gin",
40 "//gpu", 41 "//gpu",
41 "//google_apis", 42 "//google_apis",
42 "//google_apis/gcm", 43 "//google_apis/gcm",
43 "//ipc", 44 "//ipc",
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 } 123 }
123 124
124 if (is_linux) { 125 if (is_linux) {
125 deps += [ 126 deps += [
126 "//dbus", 127 "//dbus",
127 "//third_party/fontconfig", 128 "//third_party/fontconfig",
128 "//third_party/freetype2", 129 "//third_party/freetype2",
129 ] 130 ]
130 } 131 }
131 132
133 if (use_x11) {
134 deps += [ "//tools/xdisplaycheck" ]
135 }
136
132 if (is_win) { 137 if (is_win) {
133 deps += [ 138 deps += [
134 "//ui/metro_viewer", 139 "//ui/metro_viewer",
135 ] 140 ]
136 } 141 }
137 142
138 if (is_win || is_mac || is_chromeos) { 143 if (is_win || is_mac || is_chromeos) {
139 # RLZ works on these platforms. 144 # RLZ works on these platforms.
140 deps += [ 145 deps += [
141 "//rlz:rlz_lib", 146 "//rlz:rlz_lib",
(...skipping 15 matching lines...) Expand all
157 "//chrome/browser", # Blocked on content. 162 "//chrome/browser", # Blocked on content.
158 "//chrome/browser/devtools", # Blocked on content. 163 "//chrome/browser/devtools", # Blocked on content.
159 "//chrome/browser/ui", # Blocked on content. 164 "//chrome/browser/ui", # Blocked on content.
160 "//chrome/browser/ui/views", # Blocked on content. 165 "//chrome/browser/ui/views", # Blocked on content.
161 "//chrome/common", # Blocked on content. 166 "//chrome/common", # Blocked on content.
162 "//chrome/plugin", # Blocked on content. 167 "//chrome/plugin", # Blocked on content.
163 "//chrome/renderer", # Blocked on content. 168 "//chrome/renderer", # Blocked on content.
164 "//chrome/service", # Blocked on content. 169 "//chrome/service", # Blocked on content.
165 "//chrome/utility", # Blocked on content. 170 "//chrome/utility", # Blocked on content.
166 "//content", 171 "//content",
172 "//content/shell:content_shell", # Blocked on content.
167 "//extensions/common/api", 173 "//extensions/common/api",
168 "//pdf", # Not compiled on Android in GYP yet, either. 174 "//pdf", # Not compiled on Android in GYP yet, either.
169 "//ppapi:ppapi_c", 175 "//ppapi:ppapi_c",
170 "//sandbox", 176 "//sandbox",
171 "//third_party/libusb", 177 "//third_party/libusb",
172 "//ui/keyboard", # Blocked on content. 178 "//ui/keyboard", # Blocked on content.
173 179
174 # Seems to not be compiled on Android. Otherwise it will need a config.h. 180 # Seems to not be compiled on Android. Otherwise it will need a config.h.
175 "//third_party/libxslt", 181 "//third_party/libxslt",
176 182
(...skipping 25 matching lines...) Expand all
202 ] 208 ]
203 } 209 }
204 210
205 if (use_ozone) { 211 if (use_ozone) {
206 deps += [ 212 deps += [
207 "//ui/events/ozone:events_ozone", 213 "//ui/events/ozone:events_ozone",
208 "//ui/events/ozone:events_ozone_evdev", 214 "//ui/events/ozone:events_ozone_evdev",
209 ] 215 ]
210 } 216 }
211 } 217 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/tracing/tracing_resources.gyp » ('j') | content/content_shell.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698