| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| (...skipping 1086 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1097 "//ui/gfx", | 1097 "//ui/gfx", |
| 1098 ] | 1098 ] |
| 1099 | 1099 |
| 1100 if (!is_ios) { | 1100 if (!is_ios) { |
| 1101 deps += [ | 1101 deps += [ |
| 1102 "//components/sessions:test_support", | 1102 "//components/sessions:test_support", |
| 1103 "//google_apis:test_support", | 1103 "//google_apis:test_support", |
| 1104 ] | 1104 ] |
| 1105 } | 1105 } |
| 1106 | 1106 |
| 1107 if (is_android) { |
| 1108 sources -= [ |
| 1109 "sessions/session_service_test_helper.cc", |
| 1110 "sessions/session_service_test_helper.h", |
| 1111 "ui/webui/signin/login_ui_test_utils.cc", |
| 1112 "ui/webui/signin/login_ui_test_utils.h", |
| 1113 ] |
| 1114 } |
| 1115 |
| 1107 if (enable_extensions) { | 1116 if (enable_extensions) { |
| 1108 sources += [ | 1117 sources += [ |
| 1109 "extensions/extension_action_test_util.cc", | 1118 "extensions/extension_action_test_util.cc", |
| 1110 "extensions/extension_action_test_util.h", | 1119 "extensions/extension_action_test_util.h", |
| 1111 ] | 1120 ] |
| 1112 deps += [ "//extensions:test_support" ] | 1121 deps += [ "//extensions:test_support" ] |
| 1113 } | 1122 } |
| 1114 | 1123 |
| 1115 if (is_chromeos) { | 1124 if (is_chromeos) { |
| 1116 sources += [ | 1125 sources += [ |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1246 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1255 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1247 deps = [ | 1256 deps = [ |
| 1248 "//components/google/core/browser", | 1257 "//components/google/core/browser", |
| 1249 "//components/omnibox/browser", | 1258 "//components/omnibox/browser", |
| 1250 "//components/rlz", | 1259 "//components/rlz", |
| 1251 "//components/search_engines", | 1260 "//components/search_engines", |
| 1252 "//rlz:rlz_lib", | 1261 "//rlz:rlz_lib", |
| 1253 ] | 1262 ] |
| 1254 } | 1263 } |
| 1255 } | 1264 } |
| OLD | NEW |