| 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("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
| 10 | 10 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 "browser/shell_extension_web_contents_observer.cc", | 109 "browser/shell_extension_web_contents_observer.cc", |
| 110 "browser/shell_extension_web_contents_observer.h", | 110 "browser/shell_extension_web_contents_observer.h", |
| 111 "browser/shell_extensions_api_client.cc", | 111 "browser/shell_extensions_api_client.cc", |
| 112 "browser/shell_extensions_api_client.h", | 112 "browser/shell_extensions_api_client.h", |
| 113 "browser/shell_extensions_browser_client.cc", | 113 "browser/shell_extensions_browser_client.cc", |
| 114 "browser/shell_extensions_browser_client.h", | 114 "browser/shell_extensions_browser_client.h", |
| 115 "browser/shell_native_app_window.cc", | 115 "browser/shell_native_app_window.cc", |
| 116 "browser/shell_native_app_window.h", | 116 "browser/shell_native_app_window.h", |
| 117 "browser/shell_native_app_window_mac.h", | 117 "browser/shell_native_app_window_mac.h", |
| 118 "browser/shell_native_app_window_mac.mm", | 118 "browser/shell_native_app_window_mac.mm", |
| 119 "browser/shell_navigation_ui_data.cc", |
| 120 "browser/shell_navigation_ui_data.h", |
| 119 "browser/shell_network_controller_chromeos.cc", | 121 "browser/shell_network_controller_chromeos.cc", |
| 120 "browser/shell_network_controller_chromeos.h", | 122 "browser/shell_network_controller_chromeos.h", |
| 121 "browser/shell_network_delegate.cc", | 123 "browser/shell_network_delegate.cc", |
| 122 "browser/shell_network_delegate.h", | 124 "browser/shell_network_delegate.h", |
| 123 "browser/shell_oauth2_token_service.cc", | 125 "browser/shell_oauth2_token_service.cc", |
| 124 "browser/shell_oauth2_token_service.h", | 126 "browser/shell_oauth2_token_service.h", |
| 125 "browser/shell_oauth2_token_service_delegate.cc", | 127 "browser/shell_oauth2_token_service_delegate.cc", |
| 126 "browser/shell_oauth2_token_service_delegate.h", | 128 "browser/shell_oauth2_token_service_delegate.h", |
| 127 "browser/shell_prefs.cc", | 129 "browser/shell_prefs.cc", |
| 128 "browser/shell_prefs.h", | 130 "browser/shell_prefs.h", |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 "//extensions/browser", | 348 "//extensions/browser", |
| 347 ] | 349 ] |
| 348 | 350 |
| 349 if (is_chromeos) { | 351 if (is_chromeos) { |
| 350 deps += [ | 352 deps += [ |
| 351 "//chromeos:test_support", | 353 "//chromeos:test_support", |
| 352 "//components/keyed_service/content", | 354 "//components/keyed_service/content", |
| 353 ] | 355 ] |
| 354 } | 356 } |
| 355 } | 357 } |
| OLD | NEW |