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

Side by Side Diff: chrome/browser/extensions/BUILD.gn

Issue 489153003: Split bundle generation steps so that API registration is generated in browser, not common. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: extra targets Created 6 years, 4 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 8
9 gypi_values = exec_script( 9 gypi_values = exec_script(
10 "//build/gypi_to_gn.py", 10 "//build/gypi_to_gn.py",
(...skipping 21 matching lines...) Expand all
32 deps = [ 32 deps = [
33 "//chrome:extra_resources", 33 "//chrome:extra_resources",
34 "//chrome:resources", 34 "//chrome:resources",
35 "//chrome:strings", 35 "//chrome:strings",
36 "//chrome/app/resources:platform_locale_settings", 36 "//chrome/app/resources:platform_locale_settings",
37 "//chrome/app/theme:theme_resources", 37 "//chrome/app/theme:theme_resources",
38 "//chrome/browser/devtools", 38 "//chrome/browser/devtools",
39 "//chrome/browser/history:in_memory_url_index_cache_proto", 39 "//chrome/browser/history:in_memory_url_index_cache_proto",
40 "//chrome/common", 40 "//chrome/common",
41 "//chrome/common/extensions/api", 41 "//chrome/common/extensions/api",
42 "//chrome/common/extensions/api:api_registration",
42 "//chrome/common/net", 43 "//chrome/common/net",
43 "//chrome/common/safe_browsing:proto", 44 "//chrome/common/safe_browsing:proto",
44 "//chrome/installer/util", 45 "//chrome/installer/util",
45 "//components/copresence", 46 "//components/copresence",
46 "//components/omaha_query_params", 47 "//components/omaha_query_params",
47 "//components/onc", 48 "//components/onc",
48 "//components/strings", 49 "//components/strings",
49 "//components/url_matcher", 50 "//components/url_matcher",
50 "//content/public/browser", 51 "//content/public/browser",
51 "//content/public/common", 52 "//content/public/common",
52 "//crypto", 53 "//crypto",
53 "//device/bluetooth", 54 "//device/bluetooth",
54 "//device/hid", 55 "//device/hid",
55 "//extensions/browser", 56 "//extensions/browser",
56 "//extensions/common/api", 57 "//extensions/common/api",
58 "//extensions/common/api:api_registration",
57 "//extensions/strings", 59 "//extensions/strings",
58 "//net", 60 "//net",
59 "//skia", 61 "//skia",
60 "//sync", 62 "//sync",
61 "//third_party/WebKit/public:resources", 63 "//third_party/WebKit/public:resources",
62 "//third_party/cacheinvalidation", 64 "//third_party/cacheinvalidation",
63 "//third_party/icu", 65 "//third_party/icu",
64 "//third_party/leveldatabase", 66 "//third_party/leveldatabase",
65 "//third_party/re2", 67 "//third_party/re2",
66 "//ui/accessibility:ax_gen", 68 "//ui/accessibility:ax_gen",
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 gypi_values.chrome_browser_extensions_app_list_sources, 201 gypi_values.chrome_browser_extensions_app_list_sources,
200 ".", "//chrome") 202 ".", "//chrome")
201 } 203 }
202 204
203 if (!use_ozone) { 205 if (!use_ozone) {
204 sources -= [ 206 sources -= [
205 "global_shortcut_listener_ozone.cc", 207 "global_shortcut_listener_ozone.cc",
206 ] 208 ]
207 } 209 }
208 } 210 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698