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("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 "//ui/gl", | 351 "//ui/gl", |
352 "//ui/resources", | 352 "//ui/resources", |
353 "//ui/surface", | 353 "//ui/surface", |
354 "//ui/web_dialogs", | 354 "//ui/web_dialogs", |
355 "//v8", | 355 "//v8", |
356 ] | 356 ] |
357 | 357 |
358 if (toolkit_views) { | 358 if (toolkit_views) { |
359 deps += [ "//ui/views" ] | 359 deps += [ "//ui/views" ] |
360 } | 360 } |
| 361 |
| 362 if (is_android && use_aura) { |
| 363 sources -= [ |
| 364 # Aura Android uses platform_util_aura implementation. |
| 365 "platform_util_android.cc", |
| 366 ] |
| 367 } |
361 } else { # iOS | 368 } else { # iOS |
362 sources += | 369 sources += |
363 rebase_path(gypi_values.chrome_browser_ios_sources, ".", "//chrome") | 370 rebase_path(gypi_values.chrome_browser_ios_sources, ".", "//chrome") |
364 sources += | 371 sources += |
365 rebase_path(gypi_values.chrome_browser_google_sources, ".", "//chrome") | 372 rebase_path(gypi_values.chrome_browser_google_sources, ".", "//chrome") |
366 deps += [ "//net" ] | 373 deps += [ "//net" ] |
367 libs += [ | 374 libs += [ |
368 "CoreTelephony.framework", | 375 "CoreTelephony.framework", |
369 "CoreText.framework", | 376 "CoreText.framework", |
370 "MobileCoreServices.framework", | 377 "MobileCoreServices.framework", |
(...skipping 904 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1275 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1282 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
1276 deps = [ | 1283 deps = [ |
1277 "//components/google/core/browser", | 1284 "//components/google/core/browser", |
1278 "//components/omnibox/browser", | 1285 "//components/omnibox/browser", |
1279 "//components/rlz", | 1286 "//components/rlz", |
1280 "//components/search_engines", | 1287 "//components/search_engines", |
1281 "//rlz:rlz_lib", | 1288 "//rlz:rlz_lib", |
1282 ] | 1289 ] |
1283 } | 1290 } |
1284 } | 1291 } |
OLD | NEW |