| 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 import("//build/util/process_version.gni") | 7 import("//build/util/process_version.gni") |
| 8 import("//extensions/features/features.gni") | 8 import("//extensions/features/features.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 "browser/shell_native_app_window_aura.h", | 181 "browser/shell_native_app_window_aura.h", |
| 182 "browser/shell_screen.cc", | 182 "browser/shell_screen.cc", |
| 183 "browser/shell_screen.h", | 183 "browser/shell_screen.h", |
| 184 ] | 184 ] |
| 185 deps += [ | 185 deps += [ |
| 186 "//ui/wm", | 186 "//ui/wm", |
| 187 "//ui/wm/public", | 187 "//ui/wm/public", |
| 188 ] | 188 ] |
| 189 } | 189 } |
| 190 | 190 |
| 191 if (is_desktop_linux) { |
| 192 sources += [ |
| 193 "browser/api/file_system/shell_file_system_delegate.cc", |
| 194 "browser/api/file_system/shell_file_system_delegate.h", |
| 195 ] |
| 196 } |
| 197 |
| 191 if (is_chromeos) { | 198 if (is_chromeos) { |
| 192 sources += [ | 199 sources += [ |
| 193 "browser/api/vpn_provider/vpn_service_factory.cc", | 200 "browser/api/vpn_provider/vpn_service_factory.cc", |
| 194 "browser/api/vpn_provider/vpn_service_factory.h", | 201 "browser/api/vpn_provider/vpn_service_factory.h", |
| 195 ] | 202 ] |
| 196 deps += [ | 203 deps += [ |
| 197 "//chromeos", | 204 "//chromeos", |
| 198 "//ui/chromeos", | 205 "//ui/chromeos", |
| 199 "//ui/display/manager", | 206 "//ui/display/manager", |
| 200 ] | 207 ] |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 "//extensions/browser", | 457 "//extensions/browser", |
| 451 ] | 458 ] |
| 452 | 459 |
| 453 if (is_chromeos) { | 460 if (is_chromeos) { |
| 454 deps += [ | 461 deps += [ |
| 455 "//chromeos:test_support", | 462 "//chromeos:test_support", |
| 456 "//components/keyed_service/content", | 463 "//components/keyed_service/content", |
| 457 ] | 464 ] |
| 458 } | 465 } |
| 459 } | 466 } |
| OLD | NEW |