| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//chrome/common/features.gni") | 8 import("//chrome/common/features.gni") |
| 9 | 9 |
| 10 gypi_values = exec_script("//build/gypi_to_gn.py", | 10 gypi_values = exec_script("//build/gypi_to_gn.py", |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 } | 374 } |
| 375 if (enable_print_preview) { | 375 if (enable_print_preview) { |
| 376 sources += rebase_path(gypi_values.chrome_browser_ui_print_preview_sources, | 376 sources += rebase_path(gypi_values.chrome_browser_ui_print_preview_sources, |
| 377 ".", | 377 ".", |
| 378 "//chrome") | 378 "//chrome") |
| 379 } | 379 } |
| 380 | 380 |
| 381 if (is_android) { | 381 if (is_android) { |
| 382 deps += [ "//crypto:platform" ] | 382 deps += [ "//crypto:platform" ] |
| 383 | 383 |
| 384 defines += [ "CHROME_BUILD_ID=\"$android_chrome_build_id\"" ] | |
| 385 | |
| 386 if (android_java_ui) { | 384 if (android_java_ui) { |
| 387 sources += | 385 sources += |
| 388 rebase_path(gypi_values.chrome_browser_ui_android_java_ui_sources, | 386 rebase_path(gypi_values.chrome_browser_ui_android_java_ui_sources, |
| 389 ".", | 387 ".", |
| 390 "//chrome") | 388 "//chrome") |
| 391 deps += [ | 389 deps += [ |
| 392 "//chrome/browser:jni_headers", | 390 "//chrome/browser:jni_headers", |
| 393 "//components/web_contents_delegate_android", | 391 "//components/web_contents_delegate_android", |
| 394 ] | 392 ] |
| 395 deps -= [ "//ui/events" ] | 393 deps -= [ "//ui/events" ] |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 "//chrome/browser", | 664 "//chrome/browser", |
| 667 "//content/public/browser", | 665 "//content/public/browser", |
| 668 "//content/public/common", | 666 "//content/public/common", |
| 669 "//content/test:test_support", | 667 "//content/test:test_support", |
| 670 "//net:test_support", | 668 "//net:test_support", |
| 671 "//skia", | 669 "//skia", |
| 672 "//testing/gtest", | 670 "//testing/gtest", |
| 673 "//ui/base", | 671 "//ui/base", |
| 674 ] | 672 ] |
| 675 } | 673 } |
| OLD | NEW |