| 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 = [ "//blimp/client/*" ] | 11 visibility = [ "//blimp/client/*" ] |
| 12 | 12 |
| 13 sources = [ | 13 sources = [ |
| 14 "blimp_contents_impl.cc", | 14 "blimp_contents_impl.cc", |
| 15 "blimp_contents_impl.h", | 15 "blimp_contents_impl.h", |
| 16 "blimp_contents_manager.cc", | 16 "blimp_contents_manager.cc", |
| 17 "blimp_contents_manager.h", | 17 "blimp_contents_manager.h", |
| 18 "blimp_contents_view.h", | 18 "blimp_contents_view_impl.cc", |
| 19 "blimp_contents_view_impl.h", |
| 19 "blimp_navigation_controller_delegate.h", | 20 "blimp_navigation_controller_delegate.h", |
| 20 "blimp_navigation_controller_impl.cc", | 21 "blimp_navigation_controller_impl.cc", |
| 21 "blimp_navigation_controller_impl.h", | 22 "blimp_navigation_controller_impl.h", |
| 22 "ime_feature.cc", | 23 "ime_feature.cc", |
| 23 "ime_feature.h", | 24 "ime_feature.h", |
| 24 "navigation_feature.cc", | 25 "navigation_feature.cc", |
| 25 "navigation_feature.h", | 26 "navigation_feature.h", |
| 26 "tab_control_feature.cc", | 27 "tab_control_feature.cc", |
| 27 "tab_control_feature.h", | 28 "tab_control_feature.h", |
| 28 ] | 29 ] |
| (...skipping 24 matching lines...) Expand all Loading... |
| 53 "android/blimp_contents_jni_registrar.cc", | 54 "android/blimp_contents_jni_registrar.cc", |
| 54 "android/blimp_contents_jni_registrar.h", | 55 "android/blimp_contents_jni_registrar.h", |
| 55 "android/blimp_contents_observer_proxy.cc", | 56 "android/blimp_contents_observer_proxy.cc", |
| 56 "android/blimp_contents_observer_proxy.h", | 57 "android/blimp_contents_observer_proxy.h", |
| 57 "android/blimp_navigation_controller_impl_android.cc", | 58 "android/blimp_navigation_controller_impl_android.cc", |
| 58 "android/blimp_navigation_controller_impl_android.h", | 59 "android/blimp_navigation_controller_impl_android.h", |
| 59 "android/blimp_view.cc", | 60 "android/blimp_view.cc", |
| 60 "android/blimp_view.h", | 61 "android/blimp_view.h", |
| 61 "android/ime_helper_dialog.cc", | 62 "android/ime_helper_dialog.cc", |
| 62 "android/ime_helper_dialog.h", | 63 "android/ime_helper_dialog.h", |
| 63 "blimp_contents_view_android.cc", | 64 "blimp_contents_view_impl_android.cc", |
| 64 "blimp_contents_view_android.h", | 65 "blimp_contents_view_impl_android.h", |
| 65 ] | 66 ] |
| 66 | 67 |
| 67 public_deps += [ "//ui/android" ] | 68 public_deps += [ "//ui/android" ] |
| 68 | 69 |
| 69 deps += [ | 70 deps += [ |
| 70 ":jni_headers", | 71 ":jni_headers", |
| 71 "//cc", | 72 "//cc", |
| 72 "//ui/android", | 73 "//ui/android", |
| 73 "//ui/events:events", | 74 "//ui/events:events", |
| 74 ] | 75 ] |
| 75 } else { | 76 } else { |
| 76 sources += [ | 77 sources += [ |
| 77 "blimp_contents_view_aura.cc", | 78 "blimp_contents_view_impl_aura.cc", |
| 78 "blimp_contents_view_aura.h", | 79 "blimp_contents_view_impl_aura.h", |
| 79 ] | 80 ] |
| 80 } | 81 } |
| 81 } | 82 } |
| 82 | 83 |
| 83 source_set("test_support") { | 84 source_set("test_support") { |
| 84 testonly = true | 85 testonly = true |
| 85 | 86 |
| 86 sources = [ | 87 sources = [ |
| 87 "fake_navigation_feature.cc", | 88 "fake_navigation_feature.cc", |
| 88 "fake_navigation_feature.h", | 89 "fake_navigation_feature.h", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 116 "blimp_navigation_controller_impl_unittest.cc", | 117 "blimp_navigation_controller_impl_unittest.cc", |
| 117 "navigation_feature_unittest.cc", | 118 "navigation_feature_unittest.cc", |
| 118 "tab_control_feature_unittest.cc", | 119 "tab_control_feature_unittest.cc", |
| 119 ] | 120 ] |
| 120 | 121 |
| 121 deps = [ | 122 deps = [ |
| 122 ":contents", | 123 ":contents", |
| 123 ":test_support", | 124 ":test_support", |
| 124 "//base", | 125 "//base", |
| 125 "//blimp/client/public:public_headers", | 126 "//blimp/client/public:public_headers", |
| 126 "//blimp/client/support:test_support", | 127 "//blimp/client/test", |
| 127 "//blimp/common", | 128 "//blimp/common", |
| 128 "//blimp/net:test_support", | 129 "//blimp/net:test_support", |
| 129 "//net", | 130 "//net", |
| 130 "//net:test_support", | 131 "//net:test_support", |
| 131 "//testing/gtest", | 132 "//testing/gtest", |
| 132 "//ui/gfx:native_widget_types", | 133 "//ui/gfx:native_widget_types", |
| 133 "//ui/gfx:test_support", | 134 "//ui/gfx:test_support", |
| 134 "//ui/gfx/geometry:geometry", | 135 "//ui/gfx/geometry:geometry", |
| 135 "//url", | 136 "//url", |
| 136 ] | 137 ] |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java"
, | 170 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java"
, |
| 170 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverPr
oxy.java", | 171 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverPr
oxy.java", |
| 171 "android/java/src/org/chromium/blimp/core/contents/BlimpNavigationControll
erImpl.java", | 172 "android/java/src/org/chromium/blimp/core/contents/BlimpNavigationControll
erImpl.java", |
| 172 "android/java/src/org/chromium/blimp/core/contents/BlimpView.java", | 173 "android/java/src/org/chromium/blimp/core/contents/BlimpView.java", |
| 173 "android/java/src/org/chromium/blimp/core/contents/input/ImeHelperDialog.j
ava", | 174 "android/java/src/org/chromium/blimp/core/contents/input/ImeHelperDialog.j
ava", |
| 174 ] | 175 ] |
| 175 | 176 |
| 176 jni_package = "blimp/client/core/contents" | 177 jni_package = "blimp/client/core/contents" |
| 177 } | 178 } |
| 178 } | 179 } |
| OLD | NEW |