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

Side by Side Diff: BUILD.gn

Issue 335693004: Hook up content/browser compile in GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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/common.gypi » ('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 17 matching lines...) Expand all
28 "//components/navigation_metrics", 28 "//components/navigation_metrics",
29 "//components/onc", 29 "//components/onc",
30 "//components/os_crypt", 30 "//components/os_crypt",
31 "//components/query_parser", 31 "//components/query_parser",
32 "//components/resources:components_resources", 32 "//components/resources:components_resources",
33 "//components/startup_metric_utils", 33 "//components/startup_metric_utils",
34 "//components/tracing", 34 "//components/tracing",
35 "//components/translate:translate_core_browser", 35 "//components/translate:translate_core_browser",
36 "//components/translate:translate_core_common", 36 "//components/translate:translate_core_common",
37 "//components/url_matcher", 37 "//components/url_matcher",
38 #"//content/public/browser", # Exists but doesn't build yet. 38 "//content/public/browser",
39 "//content/public/child", 39 "//content/public/child",
40 "//content/public/common", 40 "//content/public/common",
41 "//content/public/renderer", 41 "//content/public/renderer",
42 "//content/browser/service_worker:database_proto", 42 "//content/browser/service_worker:database_proto",
43 "//content/browser/speech/proto", 43 "//content/browser/speech/proto",
44 "//crypto", 44 "//crypto",
45 "//extensions/common/api:extensions_api", 45 "//extensions/common/api:extensions_api",
46 "//dbus", 46 "//dbus",
47 "//device/usb", 47 "//device/usb",
48 "//gin", 48 "//gin",
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 } 123 }
124 124
125 if (cpu_arch == "x86" || cpu_arch == "x64") { 125 if (cpu_arch == "x86" || cpu_arch == "x64") {
126 # YASM is x86/x64 only. 126 # YASM is x86/x64 only.
127 deps += [ "//third_party/yasm($host_toolchain)" ] 127 deps += [ "//third_party/yasm($host_toolchain)" ]
128 } 128 }
129 129
130 if (is_android) { 130 if (is_android) {
131 deps -= [ 131 deps -= [
132 "//cc", 132 "//cc",
133 "//content/public/browser",
133 "//content/public/common", 134 "//content/public/common",
134 "//content/public/renderer", 135 "//content/public/renderer",
135 "//dbus", 136 "//dbus",
136 "//extensions/common/api:extensions_api", 137 "//extensions/common/api:extensions_api",
137 "//pdf", # Not compiled on Android in GYP yet, either. 138 "//pdf", # Not compiled on Android in GYP yet, either.
138 "//ppapi:ppapi_c", 139 "//ppapi:ppapi_c",
139 "//sandbox", 140 "//sandbox",
140 "//third_party/libusb", 141 "//third_party/libusb",
141 142
142 # Seems to not be compiled on Android. Otherwise it will need a config.h. 143 # Seems to not be compiled on Android. Otherwise it will need a config.h.
(...skipping 15 matching lines...) Expand all
158 ] 159 ]
159 } 160 }
160 161
161 if (use_ozone) { 162 if (use_ozone) {
162 deps += [ 163 deps += [
163 "//ui/events/ozone:events_ozone", 164 "//ui/events/ozone:events_ozone",
164 "//ui/events/ozone:events_ozone_evdev", 165 "//ui/events/ozone:events_ozone_evdev",
165 ] 166 ]
166 } 167 }
167 } 168 }
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698