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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 "//third_party/re2", | 294 "//third_party/re2", |
295 "//third_party/smhasher:cityhash", | 295 "//third_party/smhasher:cityhash", |
296 "//third_party/webrtc/modules/desktop_capture", | 296 "//third_party/webrtc/modules/desktop_capture", |
297 "//ui/base/ime", | 297 "//ui/base/ime", |
298 "//ui/gl", | 298 "//ui/gl", |
299 "//ui/resources", | 299 "//ui/resources", |
300 "//ui/surface", | 300 "//ui/surface", |
301 "//ui/web_dialogs", | 301 "//ui/web_dialogs", |
302 "//v8", | 302 "//v8", |
303 ] | 303 ] |
| 304 |
| 305 if (toolkit_views) { |
| 306 deps += [ "//ui/views" ] |
| 307 } |
304 } else { # iOS | 308 } else { # iOS |
305 sources += | 309 sources += |
306 rebase_path(gypi_values.chrome_browser_ios_sources, ".", "//chrome") | 310 rebase_path(gypi_values.chrome_browser_ios_sources, ".", "//chrome") |
307 sources += | 311 sources += |
308 rebase_path(gypi_values.chrome_browser_google_sources, ".", "//chrome") | 312 rebase_path(gypi_values.chrome_browser_google_sources, ".", "//chrome") |
309 deps += [ "//net" ] | 313 deps += [ "//net" ] |
310 libs += [ | 314 libs += [ |
311 "CoreTelephony.framework", | 315 "CoreTelephony.framework", |
312 "CoreText.framework", | 316 "CoreText.framework", |
313 "MobileCoreServices.framework", | 317 "MobileCoreServices.framework", |
(...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1176 ] | 1180 ] |
1177 } | 1181 } |
1178 | 1182 |
1179 if (enable_wifi_bootstrapping) { | 1183 if (enable_wifi_bootstrapping) { |
1180 sources += [ | 1184 sources += [ |
1181 "local_discovery/wifi/mock_wifi_manager.cc", | 1185 "local_discovery/wifi/mock_wifi_manager.cc", |
1182 "local_discovery/wifi/mock_wifi_manager.h", | 1186 "local_discovery/wifi/mock_wifi_manager.h", |
1183 ] | 1187 ] |
1184 } | 1188 } |
1185 } | 1189 } |
OLD | NEW |