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

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

Issue 489223002: Add chrome, installer_util targets to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 17 matching lines...) Expand all
28 # we must omit the dependency from browser_extensions to browser. 28 # we must omit the dependency from browser_extensions to browser.
29 # However, this means browser_extensions and browser should more or less 29 # However, this means browser_extensions and browser should more or less
30 # have the same dependencies. Once browser_extensions is untangled from 30 # have the same dependencies. Once browser_extensions is untangled from
31 # browser, then we can clean up these dependencies. 31 # browser, then we can clean up these dependencies.
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/history:in_memory_url_index_cache_proto", 39 "//chrome/browser/history:in_memory_url_index_cache_proto",
39 "//chrome/common", 40 "//chrome/common",
40 "//chrome/common/extensions/api", 41 "//chrome/common/extensions/api",
41 "//chrome/common/net", 42 "//chrome/common/net",
42 "//chrome/common/safe_browsing:proto", 43 "//chrome/common/safe_browsing:proto",
44 "//chrome/installer/util",
43 "//components/copresence", 45 "//components/copresence",
46 "//components/omaha_query_params",
44 "//components/onc", 47 "//components/onc",
45 "//components/strings", 48 "//components/strings",
46 "//components/url_matcher", 49 "//components/url_matcher",
47 "//content/public/browser", 50 "//content/public/browser",
48 "//content/public/common", 51 "//content/public/common",
49 "//crypto", 52 "//crypto",
53 "//device/bluetooth",
54 "//device/hid",
55 "//extensions/browser",
50 "//extensions/common/api", 56 "//extensions/common/api",
51 "//extensions/strings", 57 "//extensions/strings",
52 "//net", 58 "//net",
53 "//skia", 59 "//skia",
54 "//sync", 60 "//sync",
55 "//third_party/WebKit/public:resources", 61 "//third_party/WebKit/public:resources",
56 "//third_party/cacheinvalidation", 62 "//third_party/cacheinvalidation",
57 "//third_party/icu", 63 "//third_party/icu",
58 "//third_party/leveldatabase", 64 "//third_party/leveldatabase",
59 "//third_party/re2", 65 "//third_party/re2",
60 "//ui/accessibility:ax_gen", 66 "//ui/accessibility:ax_gen",
61 "//ui/base", 67 "//ui/base",
62 "//ui/gfx", 68 "//ui/gfx",
63 "//ui/gfx/geometry", 69 "//ui/gfx/geometry",
64 "//ui/resources", 70 "//ui/resources",
65 "//ui/strings", 71 "//ui/strings",
66 "//url", 72 "//url",
67 "//webkit/browser:storage", 73 "//webkit/browser:storage",
68 "//webkit/common:storage", 74 "//webkit/common:storage",
69 "//webkit/glue/resources", 75 "//webkit/glue/resources",
70 #"debugger", TODO(GYP)
71 #"installer_util", TODO(GYP)
72 #"../components/components.gyp:omaha_query_params", TODO(GYP)
73 #'../device/bluetooth/bluetooth.gyp:device_bluetooth', TODO(GYP)
74 #"../device/hid/hid.gyp:device_hid", TODO(GYP)
75 #"../extensions/extensions.gyp:extensions_browser", TODO(GYP)
76 #"../third_party/webrtc/modules/modules.gyp:desktop_capture", TODO(GYP) 76 #"../third_party/webrtc/modules/modules.gyp:desktop_capture", TODO(GYP)
77 ] 77 ]
78 78
79 forward_dependent_configs_from = [ 79 forward_dependent_configs_from = [
80 "//chrome/common/extensions/api", 80 "//chrome/common/extensions/api",
81 "//content/public/browser", 81 "//content/public/browser",
82 ] 82 ]
83 83
84 if (is_chromeos) { 84 if (is_chromeos) {
85 sources += rebase_path( 85 sources += rebase_path(
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 gypi_values.chrome_browser_extensions_app_list_sources, 199 gypi_values.chrome_browser_extensions_app_list_sources,
200 ".", "//chrome") 200 ".", "//chrome")
201 } 201 }
202 202
203 if (!use_ozone) { 203 if (!use_ozone) {
204 sources -= [ 204 sources -= [
205 "global_shortcut_listener_ozone.cc", 205 "global_shortcut_listener_ozone.cc",
206 ] 206 ]
207 } 207 }
208 } 208 }
OLDNEW
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/browser/ui/BUILD.gn » ('j') | chrome/version.gni » ('J')

Powered by Google App Engine
This is Rietveld 408576698