| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 "browser/shell_desktop_controller_aura.h", | 178 "browser/shell_desktop_controller_aura.h", |
| 179 "browser/shell_native_app_window_aura.cc", | 179 "browser/shell_native_app_window_aura.cc", |
| 180 "browser/shell_native_app_window_aura.h", | 180 "browser/shell_native_app_window_aura.h", |
| 181 "browser/shell_screen.cc", | 181 "browser/shell_screen.cc", |
| 182 "browser/shell_screen.h", | 182 "browser/shell_screen.h", |
| 183 ] | 183 ] |
| 184 deps += [ "//ui/wm" ] | 184 deps += [ "//ui/wm" ] |
| 185 } | 185 } |
| 186 | 186 |
| 187 if (is_chromeos) { | 187 if (is_chromeos) { |
| 188 sources += [ "browser/api/vpn_provider/vpn_service_factory.cc" ] | 188 sources += [ |
| 189 "browser/api/vpn_provider/vpn_service_factory.cc", |
| 190 "browser/api/vpn_provider/vpn_service_factory.h", |
| 191 ] |
| 189 deps += [ | 192 deps += [ |
| 190 "//chromeos", | 193 "//chromeos", |
| 191 "//ui/chromeos", | 194 "//ui/chromeos", |
| 192 "//ui/display/manager", | 195 "//ui/display/manager", |
| 193 ] | 196 ] |
| 194 } | 197 } |
| 195 | 198 |
| 196 if (enable_nacl) { | 199 if (enable_nacl) { |
| 197 sources += [ | 200 sources += [ |
| 198 "browser/shell_nacl_browser_delegate.cc", | 201 "browser/shell_nacl_browser_delegate.cc", |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 "//extensions/browser", | 446 "//extensions/browser", |
| 444 ] | 447 ] |
| 445 | 448 |
| 446 if (is_chromeos) { | 449 if (is_chromeos) { |
| 447 deps += [ | 450 deps += [ |
| 448 "//chromeos:test_support", | 451 "//chromeos:test_support", |
| 449 "//components/keyed_service/content", | 452 "//components/keyed_service/content", |
| 450 ] | 453 ] |
| 451 } | 454 } |
| 452 } | 455 } |
| OLD | NEW |