| 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") { |
| 11 visibility = [ | 11 visibility = [ "//blimp/client/core/*" ] |
| 12 "//blimp/client/core/*", | |
| 13 "//blimp/engine:browser_tests", | |
| 14 ] | |
| 15 | 12 |
| 16 sources = [ | 13 sources = [ |
| 17 "blimp_contents_impl.cc", | 14 "blimp_contents_impl.cc", |
| 18 "blimp_contents_impl.h", | 15 "blimp_contents_impl.h", |
| 19 "blimp_contents_manager.cc", | 16 "blimp_contents_manager.cc", |
| 20 "blimp_contents_manager.h", | 17 "blimp_contents_manager.h", |
| 21 "blimp_contents_view_impl.cc", | 18 "blimp_contents_view_impl.cc", |
| 22 "blimp_contents_view_impl.h", | 19 "blimp_contents_view_impl.h", |
| 23 "blimp_navigation_controller_delegate.h", | 20 "blimp_navigation_controller_delegate.h", |
| 24 "blimp_navigation_controller_impl.cc", | 21 "blimp_navigation_controller_impl.cc", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 ] | 75 ] |
| 79 } else { | 76 } else { |
| 80 sources += [ | 77 sources += [ |
| 81 "blimp_contents_view_impl_aura.cc", | 78 "blimp_contents_view_impl_aura.cc", |
| 82 "blimp_contents_view_impl_aura.h", | 79 "blimp_contents_view_impl_aura.h", |
| 83 ] | 80 ] |
| 84 } | 81 } |
| 85 } | 82 } |
| 86 | 83 |
| 87 source_set("test_support") { | 84 source_set("test_support") { |
| 88 visibility = [ | 85 visibility = [ "//blimp/client/core/contents:unit_tests" ] |
| 89 "//blimp/engine:browser_tests", # TODO(nyquist): Remove this. See crbug/653
789. | |
| 90 "//blimp/client/core/contents:unit_tests", | |
| 91 ] | |
| 92 | 86 |
| 93 testonly = true | 87 testonly = true |
| 94 | 88 |
| 95 sources = [ | 89 sources = [ |
| 96 "fake_navigation_feature.cc", | 90 "fake_navigation_feature.cc", |
| 97 "fake_navigation_feature.h", | 91 "fake_navigation_feature.h", |
| 98 "mock_ime_feature_delegate.cc", | 92 "mock_ime_feature_delegate.cc", |
| 99 "mock_ime_feature_delegate.h", | 93 "mock_ime_feature_delegate.h", |
| 100 "mock_navigation_feature_delegate.cc", | 94 "mock_navigation_feature_delegate.cc", |
| 101 "mock_navigation_feature_delegate.h", | 95 "mock_navigation_feature_delegate.h", |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java"
, | 177 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java"
, |
| 184 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverPr
oxy.java", | 178 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverPr
oxy.java", |
| 185 "android/java/src/org/chromium/blimp/core/contents/BlimpNavigationControll
erImpl.java", | 179 "android/java/src/org/chromium/blimp/core/contents/BlimpNavigationControll
erImpl.java", |
| 186 "android/java/src/org/chromium/blimp/core/contents/BlimpView.java", | 180 "android/java/src/org/chromium/blimp/core/contents/BlimpView.java", |
| 187 "android/java/src/org/chromium/blimp/core/contents/input/ImeHelperDialog.j
ava", | 181 "android/java/src/org/chromium/blimp/core/contents/input/ImeHelperDialog.j
ava", |
| 188 ] | 182 ] |
| 189 | 183 |
| 190 jni_package = "blimp/client/core/contents" | 184 jni_package = "blimp/client/core/contents" |
| 191 } | 185 } |
| 192 } | 186 } |
| OLD | NEW |