| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |