| 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 (use_aura && is_android) { |
| 363 sources += [ "fullscreen_auraandroid.cc" ] |
| 364 } |
| 361 } else { # iOS | 365 } else { # iOS |
| 362 sources += | 366 sources += |
| 363 rebase_path(gypi_values.chrome_browser_ios_sources, ".", "//chrome") | 367 rebase_path(gypi_values.chrome_browser_ios_sources, ".", "//chrome") |
| 364 sources += | 368 sources += |
| 365 rebase_path(gypi_values.chrome_browser_google_sources, ".", "//chrome") | 369 rebase_path(gypi_values.chrome_browser_google_sources, ".", "//chrome") |
| 366 deps += [ "//net" ] | 370 deps += [ "//net" ] |
| 367 libs += [ | 371 libs += [ |
| 368 "CoreTelephony.framework", | 372 "CoreTelephony.framework", |
| 369 "CoreText.framework", | 373 "CoreText.framework", |
| 370 "MobileCoreServices.framework", | 374 "MobileCoreServices.framework", |
| (...skipping 907 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1278 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1282 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1279 deps = [ | 1283 deps = [ |
| 1280 "//components/google/core/browser", | 1284 "//components/google/core/browser", |
| 1281 "//components/omnibox/browser", | 1285 "//components/omnibox/browser", |
| 1282 "//components/rlz", | 1286 "//components/rlz", |
| 1283 "//components/search_engines", | 1287 "//components/search_engines", |
| 1284 "//rlz:rlz_lib", | 1288 "//rlz:rlz_lib", |
| 1285 ] | 1289 ] |
| 1286 } | 1290 } |
| 1287 } | 1291 } |
| OLD | NEW |