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("//blimp/blimp.gni") |
5 import("//build/config/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") |
6 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
9 import("//build/split_static_library.gni") | 10 import("//build/split_static_library.gni") |
10 import("//chrome/common/features.gni") | 11 import("//chrome/common/features.gni") |
11 import("//media/media_options.gni") | 12 import("//media/media_options.gni") |
12 import("//third_party/protobuf/proto_library.gni") | 13 import("//third_party/protobuf/proto_library.gni") |
13 | 14 |
14 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which | 15 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which |
(...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
763 sources += rebase_path(gypi_values.chrome_browser_android_java_ui_sources, | 764 sources += rebase_path(gypi_values.chrome_browser_android_java_ui_sources, |
764 ".", | 765 ".", |
765 "//chrome") | 766 "//chrome") |
766 sources += rebase_path(gypi_values.chrome_browser_offline_pages_sources, | 767 sources += rebase_path(gypi_values.chrome_browser_offline_pages_sources, |
767 ".", | 768 ".", |
768 "//chrome") | 769 "//chrome") |
769 deps += [ | 770 deps += [ |
770 ":client_discourse_context_proto", | 771 ":client_discourse_context_proto", |
771 ":delta_file_proto", | 772 ":delta_file_proto", |
772 ":jni_headers", | 773 ":jni_headers", |
| 774 "//blimp/client/public", |
773 "//components/data_usage/android", | 775 "//components/data_usage/android", |
774 "//components/precache/content", | 776 "//components/precache/content", |
775 "//components/precache/core", | 777 "//components/precache/core", |
776 "//components/resources:components_resources", | 778 "//components/resources:components_resources", |
777 "//components/toolbar", | 779 "//components/toolbar", |
778 "//components/web_contents_delegate_android", | 780 "//components/web_contents_delegate_android", |
779 ] | 781 ] |
| 782 |
| 783 if (enable_blimp) { |
| 784 deps += [ "//blimp/client/core" ] |
| 785 } else { |
| 786 deps += [ "//blimp/client/dummy" ] |
| 787 } |
780 } | 788 } |
781 | 789 |
782 if (is_android) { | 790 if (is_android) { |
783 deps += [ | 791 deps += [ |
784 "//components/cdm/browser", | 792 "//components/cdm/browser", |
785 "//components/resources:components_resources", | 793 "//components/resources:components_resources", |
786 "//third_party/android_opengl/etc1", | 794 "//third_party/android_opengl/etc1", |
787 "//third_party/android_tools:cpu_features", | 795 "//third_party/android_tools:cpu_features", |
788 "//third_party/libaddressinput:util", | 796 "//third_party/libaddressinput:util", |
789 ] | 797 ] |
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1369 # linking all of the test support. | 1377 # linking all of the test support. |
1370 source_set("pepper_cdm_test_constants") { | 1378 source_set("pepper_cdm_test_constants") { |
1371 testonly = true | 1379 testonly = true |
1372 visibility = [ "//chrome/*" ] | 1380 visibility = [ "//chrome/*" ] |
1373 sources = [ | 1381 sources = [ |
1374 "media/pepper_cdm_test_constants.cc", | 1382 "media/pepper_cdm_test_constants.cc", |
1375 "media/pepper_cdm_test_constants.h", | 1383 "media/pepper_cdm_test_constants.h", |
1376 ] | 1384 ] |
1377 } | 1385 } |
1378 } | 1386 } |
OLD | NEW |