| 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_navigation_controller_delegate.h", | 18 "blimp_navigation_controller_delegate.h", |
| 19 "blimp_navigation_controller_impl.cc", | 19 "blimp_navigation_controller_impl.cc", |
| 20 "blimp_navigation_controller_impl.h", | 20 "blimp_navigation_controller_impl.h", |
| 21 "ime_feature.cc", |
| 22 "ime_feature.h", |
| 21 "navigation_feature.cc", | 23 "navigation_feature.cc", |
| 22 "navigation_feature.h", | 24 "navigation_feature.h", |
| 23 ] | 25 ] |
| 24 | 26 |
| 25 public_deps = [ | 27 public_deps = [ |
| 26 "//base", | 28 "//base", |
| 27 "//blimp/client/public:public_headers", | 29 "//blimp/client/public:public_headers", |
| 28 "//blimp/net", | 30 "//blimp/net", |
| 29 "//net:net", | 31 "//net:net", |
| 32 "//ui/base/ime:text_input_types", |
| 30 "//url", | 33 "//url", |
| 31 ] | 34 ] |
| 32 | 35 |
| 33 deps = [ | 36 deps = [ |
| 34 "//blimp/common", | 37 "//blimp/common", |
| 35 "//components/url_formatter", | 38 "//components/url_formatter", |
| 36 ] | 39 ] |
| 37 | 40 |
| 38 if (is_android) { | 41 if (is_android) { |
| 39 sources += [ | 42 sources += [ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 52 deps += [ ":jni_headers" ] | 55 deps += [ ":jni_headers" ] |
| 53 } | 56 } |
| 54 } | 57 } |
| 55 | 58 |
| 56 source_set("test_support") { | 59 source_set("test_support") { |
| 57 testonly = true | 60 testonly = true |
| 58 | 61 |
| 59 sources = [ | 62 sources = [ |
| 60 "fake_navigation_feature.cc", | 63 "fake_navigation_feature.cc", |
| 61 "fake_navigation_feature.h", | 64 "fake_navigation_feature.h", |
| 65 "mock_ime_feature_delegate.cc", |
| 66 "mock_ime_feature_delegate.h", |
| 62 "mock_navigation_feature_delegate.cc", | 67 "mock_navigation_feature_delegate.cc", |
| 63 "mock_navigation_feature_delegate.h", | 68 "mock_navigation_feature_delegate.h", |
| 64 ] | 69 ] |
| 65 | 70 |
| 66 deps = [ | 71 deps = [ |
| 67 "//base", | 72 "//base", |
| 68 "//skia", | 73 "//skia", |
| 69 "//url", | 74 "//url", |
| 70 ] | 75 ] |
| 71 | 76 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 sources = [ | 129 sources = [ |
| 125 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsFactory.ja
va", | 130 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsFactory.ja
va", |
| 126 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java"
, | 131 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java"
, |
| 127 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverPr
oxy.java", | 132 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverPr
oxy.java", |
| 128 "android/java/src/org/chromium/blimp/core/contents/BlimpNavigationControll
erImpl.java", | 133 "android/java/src/org/chromium/blimp/core/contents/BlimpNavigationControll
erImpl.java", |
| 129 ] | 134 ] |
| 130 | 135 |
| 131 jni_package = "blimp/client/core/contents" | 136 jni_package = "blimp/client/core/contents" |
| 132 } | 137 } |
| 133 } | 138 } |
| OLD | NEW |