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

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

Issue 1584473004: Migrate ProcessesEventRouter to the new task manager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: [NOT a WIP] All tests are passing. Created 4 years, 10 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 "//ui/accessibility:ax_gen", 77 "//ui/accessibility:ax_gen",
78 "//ui/base", 78 "//ui/base",
79 "//ui/base/ime", 79 "//ui/base/ime",
80 "//ui/gfx", 80 "//ui/gfx",
81 "//ui/gfx/geometry", 81 "//ui/gfx/geometry",
82 "//ui/resources", 82 "//ui/resources",
83 "//ui/strings", 83 "//ui/strings",
84 "//url", 84 "//url",
85 ] 85 ]
86 86
87 if (enable_task_manager) {
88 sources +=
89 gypi_values.chrome_browser_extensions_task_manager_enabled_sources
90 }
91
87 if (is_chromeos) { 92 if (is_chromeos) {
88 sources += 93 sources +=
89 rebase_path(gypi_values.chrome_browser_extensions_chromeos_sources, 94 rebase_path(gypi_values.chrome_browser_extensions_chromeos_sources,
90 ".", 95 ".",
91 "//chrome") 96 "//chrome")
92 sources -= [ "api/music_manager_private/device_id_linux.cc" ] 97 sources -= [ "api/music_manager_private/device_id_linux.cc" ]
93 configs += [ "//build/config/linux:dbus" ] 98 configs += [ "//build/config/linux:dbus" ]
94 deps += [ 99 deps += [
95 "//components/chrome_apps", 100 "//components/chrome_apps",
96 "//remoting/host/it2me:common", 101 "//remoting/host/it2me:common",
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 "//chrome") 225 "//chrome")
221 } 226 }
222 227
223 if (is_chromeos && use_ozone) { 228 if (is_chromeos && use_ozone) {
224 sources -= [ "global_shortcut_listener_chromeos.cc" ] 229 sources -= [ "global_shortcut_listener_chromeos.cc" ]
225 } 230 }
226 if (!use_ozone) { 231 if (!use_ozone) {
227 sources -= [ "global_shortcut_listener_ozone.cc" ] 232 sources -= [ "global_shortcut_listener_ozone.cc" ]
228 } 233 }
229 } 234 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698