| 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 "ime_feature.h", | 24 "ime_feature.h", |
| 25 "navigation_feature.cc", | 25 "navigation_feature.cc", |
| 26 "navigation_feature.h", | 26 "navigation_feature.h", |
| 27 "tab_control_feature.cc", | 27 "tab_control_feature.cc", |
| 28 "tab_control_feature.h", | 28 "tab_control_feature.h", |
| 29 ] | 29 ] |
| 30 | 30 |
| 31 public_deps = [ | 31 public_deps = [ |
| 32 "//base", | 32 "//base", |
| 33 "//blimp/client/core/compositor", | 33 "//blimp/client/core/compositor", |
| 34 "//blimp/client/core/render_widget", |
| 34 "//blimp/client/public:public_headers", | 35 "//blimp/client/public:public_headers", |
| 35 "//blimp/net", | 36 "//blimp/net", |
| 36 "//net:net", | 37 "//net:net", |
| 37 "//ui/base/ime:text_input_types", | 38 "//ui/base/ime:text_input_types", |
| 38 "//ui/gfx:native_widget_types", | 39 "//ui/gfx:native_widget_types", |
| 39 "//ui/gfx/geometry:geometry", | 40 "//ui/gfx/geometry:geometry", |
| 40 "//url", | 41 "//url", |
| 41 ] | 42 ] |
| 42 | 43 |
| 43 deps = [ | 44 deps = [ |
| 44 "//blimp/client/core/render_widget", | |
| 45 "//blimp/common", | 45 "//blimp/common", |
| 46 "//components/url_formatter", | 46 "//components/url_formatter", |
| 47 "//skia", | 47 "//skia", |
| 48 ] | 48 ] |
| 49 | 49 |
| 50 if (is_android) { | 50 if (is_android) { |
| 51 sources += [ | 51 sources += [ |
| 52 "android/blimp_contents_impl_android.cc", | 52 "android/blimp_contents_impl_android.cc", |
| 53 "android/blimp_contents_impl_android.h", | 53 "android/blimp_contents_impl_android.h", |
| 54 "android/blimp_contents_jni_registrar.cc", | 54 "android/blimp_contents_jni_registrar.cc", |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java"
, | 170 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java"
, |
| 171 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverPr
oxy.java", | 171 "android/java/src/org/chromium/blimp/core/contents/BlimpContentsObserverPr
oxy.java", |
| 172 "android/java/src/org/chromium/blimp/core/contents/BlimpNavigationControll
erImpl.java", | 172 "android/java/src/org/chromium/blimp/core/contents/BlimpNavigationControll
erImpl.java", |
| 173 "android/java/src/org/chromium/blimp/core/contents/BlimpView.java", | 173 "android/java/src/org/chromium/blimp/core/contents/BlimpView.java", |
| 174 "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", |
| 175 ] | 175 ] |
| 176 | 176 |
| 177 jni_package = "blimp/client/core/contents" | 177 jni_package = "blimp/client/core/contents" |
| 178 } | 178 } |
| 179 } | 179 } |
| OLD | NEW |