| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 } | 8 } |
| 9 | 9 |
| 10 source_set("contents") { | 10 source_set("contents") { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 public_deps = [ | 25 public_deps = [ |
| 26 "//base", | 26 "//base", |
| 27 "//blimp/client/public:public_headers", | 27 "//blimp/client/public:public_headers", |
| 28 "//blimp/net", | 28 "//blimp/net", |
| 29 "//net:net", | 29 "//net:net", |
| 30 "//url", | 30 "//url", |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 deps = [ | 33 deps = [ |
| 34 "//blimp/client/core/render_widget", |
| 34 "//blimp/common", | 35 "//blimp/common", |
| 35 "//components/url_formatter", | 36 "//components/url_formatter", |
| 36 ] | 37 ] |
| 37 | 38 |
| 38 if (is_android) { | 39 if (is_android) { |
| 39 sources += [ | 40 sources += [ |
| 40 "android/blimp_contents_factory.cc", | 41 "android/blimp_contents_factory.cc", |
| 41 "android/blimp_contents_factory.h", | 42 "android/blimp_contents_factory.h", |
| 42 "android/blimp_contents_impl_android.cc", | 43 "android/blimp_contents_impl_android.cc", |
| 43 "android/blimp_contents_impl_android.h", | 44 "android/blimp_contents_impl_android.h", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "blimp_contents_manager_unittest.cc", | 86 "blimp_contents_manager_unittest.cc", |
| 86 "blimp_contents_observer_unittest.cc", | 87 "blimp_contents_observer_unittest.cc", |
| 87 "blimp_navigation_controller_impl_unittest.cc", | 88 "blimp_navigation_controller_impl_unittest.cc", |
| 88 "navigation_feature_unittest.cc", | 89 "navigation_feature_unittest.cc", |
| 89 ] | 90 ] |
| 90 | 91 |
| 91 deps = [ | 92 deps = [ |
| 92 ":contents", | 93 ":contents", |
| 93 ":test_support", | 94 ":test_support", |
| 94 "//base", | 95 "//base", |
| 96 "//blimp/client/core/compositor:compositor_support", |
| 97 "//blimp/client/core/render_widget", |
| 95 "//blimp/client/public:public_headers", | 98 "//blimp/client/public:public_headers", |
| 96 "//blimp/common", | 99 "//blimp/common", |
| 97 "//blimp/net:test_support", | 100 "//blimp/net:test_support", |
| 98 "//net:test_support", | 101 "//net:test_support", |
| 99 "//testing/gtest", | 102 "//testing/gtest", |
| 103 "//third_party/WebKit/public:blink_headers", |
| 100 "//url", | 104 "//url", |
| 101 ] | 105 ] |
| 102 } | 106 } |
| 103 | 107 |
| 104 if (is_android) { | 108 if (is_android) { |
| 105 android_library("contents_java") { | 109 android_library("contents_java") { |
| 106 visibility = [ "//blimp/client/*" ] | 110 visibility = [ "//blimp/client/*" ] |
| 107 | 111 |
| 108 java_files = [ | 112 java_files = [ |
| 109 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsFactory.ja
va", | 113 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsFactory.ja
va", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 124 sources = [ | 128 sources = [ |
| 125 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsFactory.ja
va", | 129 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsFactory.ja
va", |
| 126 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java"
, | 130 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java"
, |
| 127 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverPr
oxy.java", | 131 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverPr
oxy.java", |
| 128 "android/java/src/org/chromium/blimp/core/contents/BlimpNavigationControll
erImpl.java", | 132 "android/java/src/org/chromium/blimp/core/contents/BlimpNavigationControll
erImpl.java", |
| 129 ] | 133 ] |
| 130 | 134 |
| 131 jni_package = "blimp/client/core/contents" | 135 jni_package = "blimp/client/core/contents" |
| 132 } | 136 } |
| 133 } | 137 } |
| OLD | NEW |