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

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

Issue 803313003: Rename omaha_client and similar tokens to update_client in all contexts. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: rebase to master Created 5 years, 11 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/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 assert(enable_extensions) 9 assert(enable_extensions)
10 10
(...skipping 28 matching lines...) Expand all
39 "//chrome/app/resources:platform_locale_settings", 39 "//chrome/app/resources:platform_locale_settings",
40 "//chrome/app/theme:theme_resources", 40 "//chrome/app/theme:theme_resources",
41 "//chrome/browser/devtools", 41 "//chrome/browser/devtools",
42 "//chrome/common", 42 "//chrome/common",
43 "//chrome/common/extensions/api:api_registration", 43 "//chrome/common/extensions/api:api_registration",
44 "//chrome/common/net", 44 "//chrome/common/net",
45 "//chrome/common/safe_browsing:proto", 45 "//chrome/common/safe_browsing:proto",
46 "//chrome/installer/util", 46 "//chrome/installer/util",
47 "//components/copresence", 47 "//components/copresence",
48 "//components/history/core/browser:proto", 48 "//components/history/core/browser:proto",
49 "//components/omaha_client",
50 "//components/onc", 49 "//components/onc",
51 "//components/proximity_auth", 50 "//components/proximity_auth",
52 "//components/strings", 51 "//components/strings",
52 "//components/update_client",
53 "//components/url_matcher", 53 "//components/url_matcher",
54 "//content/app/resources", 54 "//content/app/resources",
55 "//content/public/common", 55 "//content/public/common",
56 "//crypto", 56 "//crypto",
57 "//device/bluetooth", 57 "//device/bluetooth",
58 "//device/hid", 58 "//device/hid",
59 "//extensions/browser", 59 "//extensions/browser",
60 "//extensions/common/api", 60 "//extensions/common/api",
61 "//extensions/common/api:api_registration", 61 "//extensions/common/api:api_registration",
62 "//extensions/strings", 62 "//extensions/strings",
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 "//chrome") 218 "//chrome")
219 } 219 }
220 220
221 if (is_chromeos && use_ozone) { 221 if (is_chromeos && use_ozone) {
222 sources -= [ "global_shortcut_listener_chromeos.cc" ] 222 sources -= [ "global_shortcut_listener_chromeos.cc" ]
223 } 223 }
224 if (!use_ozone) { 224 if (!use_ozone) {
225 sources -= [ "global_shortcut_listener_ozone.cc" ] 225 sources -= [ "global_shortcut_listener_ozone.cc" ]
226 } 226 }
227 } 227 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698