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

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

Issue 2074263002: [Experimental] Fool around with exposing extension bindings via blink Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 7
8 assert(enable_extensions) 8 assert(enable_extensions)
9 9
10 gypi_values = 10 gypi_values =
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 "//components/url_matcher", 55 "//components/url_matcher",
56 "//content/app/resources", 56 "//content/app/resources",
57 "//content/public/common", 57 "//content/public/common",
58 "//crypto", 58 "//crypto",
59 "//device/bluetooth", 59 "//device/bluetooth",
60 "//device/hid", 60 "//device/hid",
61 "//extensions:extensions_resources", 61 "//extensions:extensions_resources",
62 "//extensions/browser", 62 "//extensions/browser",
63 "//extensions/common/api", 63 "//extensions/common/api",
64 "//extensions/common/api:api_registration", 64 "//extensions/common/api:api_registration",
65 "//extensions/common/api/mojo:mojo",
65 "//extensions/strings", 66 "//extensions/strings",
66 "//net", 67 "//net",
67 "//skia", 68 "//skia",
68 "//storage/browser", 69 "//storage/browser",
69 "//storage/common", 70 "//storage/common",
70 "//sync", 71 "//sync",
71 "//third_party/WebKit/public:image_resources", 72 "//third_party/WebKit/public:image_resources",
72 "//third_party/WebKit/public:resources", 73 "//third_party/WebKit/public:resources",
73 "//third_party/cacheinvalidation", 74 "//third_party/cacheinvalidation",
74 "//third_party/icu", 75 "//third_party/icu",
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 "//chrome") 223 "//chrome")
223 } 224 }
224 225
225 if (is_chromeos && use_ozone) { 226 if (is_chromeos && use_ozone) {
226 sources -= [ "global_shortcut_listener_chromeos.cc" ] 227 sources -= [ "global_shortcut_listener_chromeos.cc" ]
227 } 228 }
228 if (!use_ozone) { 229 if (!use_ozone) {
229 sources -= [ "global_shortcut_listener_ozone.cc" ] 230 sources -= [ "global_shortcut_listener_ozone.cc" ]
230 } 231 }
231 } 232 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698