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

Side by Side Diff: BUILD.gn

Issue 394033002: Add gcm, nfc and bluetooth to 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
« no previous file with comments | « no previous file | chrome/browser/BUILD.gn » ('j') | google_apis/gcm/gcm.gyp » ('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 15 matching lines...) Expand all
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 "//crypto", 34 "//crypto",
35 "//extensions/common/api:extensions_api", 35 "//extensions/common/api:extensions_api",
36 "//device/bluetooth",
37 "//device/nfc",
36 "//device/usb", 38 "//device/usb",
37 "//gin", 39 "//gin",
38 "//gpu", 40 "//gpu",
39 "//google_apis", 41 "//google_apis",
42 "//google_apis/gcm",
40 "//ipc", 43 "//ipc",
41 "//mojo", 44 "//mojo",
42 "//mojo/common", 45 "//mojo/common",
43 "//mojo/environment:chromium", 46 "//mojo/environment:chromium",
44 "//mojo/service_manager", 47 "//mojo/service_manager",
45 "//mojo/system", 48 "//mojo/system",
46 "//net", 49 "//net",
47 "//pdf", 50 "//pdf",
48 "//ppapi:ppapi_c", 51 "//ppapi:ppapi_c",
49 "//printing", 52 "//printing",
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 "//ui/aura", 169 "//ui/aura",
167 170
168 # Fails on Android for unknown reasons. 171 # Fails on Android for unknown reasons.
169 "//third_party/flac", 172 "//third_party/flac",
170 "//breakpad:symupload", 173 "//breakpad:symupload",
171 174
172 # TODO(brettw) make Blink work on Android. 175 # TODO(brettw) make Blink work on Android.
173 "//third_party/WebKit/public:all_blink", 176 "//third_party/WebKit/public:all_blink",
174 177
175 # Not tested on Android yet: 178 # Not tested on Android yet:
179 "//google_apis/gcm",
176 "//third_party/cld_2", 180 "//third_party/cld_2",
177 "//third_party/libaddressinput", 181 "//third_party/libaddressinput",
178 "//third_party/ffmpeg", 182 "//third_party/ffmpeg",
179 "//ui/web_dialogs", 183 "//ui/web_dialogs",
180 "//ui/wm", 184 "//ui/wm",
181 "//webkit/browser:storage", 185 "//webkit/browser:storage",
182 "//webkit/child", 186 "//webkit/child",
183 ] 187 ]
184 } 188 }
185 189
186 if (use_ozone) { 190 if (use_ozone) {
187 deps += [ 191 deps += [
188 "//ui/events/ozone:events_ozone", 192 "//ui/events/ozone:events_ozone",
189 "//ui/events/ozone:events_ozone_evdev", 193 "//ui/events/ozone:events_ozone_evdev",
190 ] 194 ]
191 } 195 }
192 } 196 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/BUILD.gn » ('j') | google_apis/gcm/gcm.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698