| 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", |
| 17 "blimp_contents_manager.h", |
| 16 "blimp_navigation_controller_delegate.h", | 18 "blimp_navigation_controller_delegate.h", |
| 17 "blimp_navigation_controller_impl.cc", | 19 "blimp_navigation_controller_impl.cc", |
| 18 "blimp_navigation_controller_impl.h", | 20 "blimp_navigation_controller_impl.h", |
| 19 "navigation_feature.cc", | 21 "navigation_feature.cc", |
| 20 "navigation_feature.h", | 22 "navigation_feature.h", |
| 21 ] | 23 ] |
| 22 | 24 |
| 23 public_deps = [ | 25 public_deps = [ |
| 24 "//base", | 26 "//base", |
| 25 "//blimp/client/public:public_headers", | 27 "//blimp/client/public:public_headers", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 ] | 75 ] |
| 74 } | 76 } |
| 75 | 77 |
| 76 source_set("unit_tests") { | 78 source_set("unit_tests") { |
| 77 visibility = [ "//blimp/client/core:unit_tests" ] | 79 visibility = [ "//blimp/client/core:unit_tests" ] |
| 78 | 80 |
| 79 testonly = true | 81 testonly = true |
| 80 | 82 |
| 81 sources = [ | 83 sources = [ |
| 82 "blimp_contents_impl_unittest.cc", | 84 "blimp_contents_impl_unittest.cc", |
| 85 "blimp_contents_manager_unittest.cc", |
| 86 "blimp_contents_observer_unittest.cc", |
| 83 "blimp_navigation_controller_impl_unittest.cc", | 87 "blimp_navigation_controller_impl_unittest.cc", |
| 84 "navigation_feature_unittest.cc", | 88 "navigation_feature_unittest.cc", |
| 85 ] | 89 ] |
| 86 | 90 |
| 87 deps = [ | 91 deps = [ |
| 88 ":contents", | 92 ":contents", |
| 89 ":test_support", | 93 ":test_support", |
| 90 "//base", | 94 "//base", |
| 91 "//blimp/client/public:public_headers", | 95 "//blimp/client/public:public_headers", |
| 92 "//blimp/common", | 96 "//blimp/common", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 120 sources = [ | 124 sources = [ |
| 121 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsFactory.ja
va", | 125 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsFactory.ja
va", |
| 122 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java"
, | 126 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java"
, |
| 123 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverPr
oxy.java", | 127 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverPr
oxy.java", |
| 124 "android/java/src/org/chromium/blimp/core/contents/BlimpNavigationControll
erImpl.java", | 128 "android/java/src/org/chromium/blimp/core/contents/BlimpNavigationControll
erImpl.java", |
| 125 ] | 129 ] |
| 126 | 130 |
| 127 jni_package = "blimp/client/core/contents" | 131 jni_package = "blimp/client/core/contents" |
| 128 } | 132 } |
| 129 } | 133 } |
| OLD | NEW |