| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 ":client", | 84 ":client", |
| 85 "//base", | 85 "//base", |
| 86 "//base/test:test_support", | 86 "//base/test:test_support", |
| 87 "//testing/gmock", | 87 "//testing/gmock", |
| 88 "//testing/gtest", | 88 "//testing/gtest", |
| 89 ] | 89 ] |
| 90 } | 90 } |
| 91 | 91 |
| 92 source_set("feature") { | 92 source_set("feature") { |
| 93 sources = [ | 93 sources = [ |
| 94 "feature/geolocation_feature.cc", |
| 95 "feature/geolocation_feature.h", |
| 94 "feature/ime_feature.cc", | 96 "feature/ime_feature.cc", |
| 95 "feature/ime_feature.h", | 97 "feature/ime_feature.h", |
| 96 "feature/render_widget_feature.cc", | 98 "feature/render_widget_feature.cc", |
| 97 "feature/render_widget_feature.h", | 99 "feature/render_widget_feature.h", |
| 98 "feature/settings_feature.cc", | 100 "feature/settings_feature.cc", |
| 99 "feature/settings_feature.h", | 101 "feature/settings_feature.h", |
| 100 "feature/tab_control_feature.cc", | 102 "feature/tab_control_feature.cc", |
| 101 "feature/tab_control_feature.h", | 103 "feature/tab_control_feature.h", |
| 102 ] | 104 ] |
| 103 | 105 |
| 104 deps = [ | 106 deps = [ |
| 105 "//base:base", | 107 "//base:base", |
| 106 "//blimp/common", | 108 "//blimp/common", |
| 107 "//blimp/net", | 109 "//blimp/net", |
| 108 "//cc", | 110 "//cc", |
| 109 "//cc/proto", | 111 "//cc/proto", |
| 110 "//components/url_formatter", | 112 "//components/url_formatter", |
| 113 "//device/geolocation:device_geolocation", |
| 111 "//net:net", | 114 "//net:net", |
| 112 "//skia", | 115 "//skia", |
| 113 "//ui/base/ime:text_input_types", | 116 "//ui/base/ime:text_input_types", |
| 114 "//ui/gfx/geometry:geometry", | 117 "//ui/gfx/geometry:geometry", |
| 115 ] | 118 ] |
| 116 | 119 |
| 117 public_deps = [ | 120 public_deps = [ |
| 118 "//blimp/common/proto", | 121 "//blimp/common/proto", |
| 119 ] | 122 ] |
| 120 } | 123 } |
| 121 | 124 |
| 122 source_set("test_support") { | 125 source_set("test_support") { |
| 123 testonly = true | 126 testonly = true |
| 124 | 127 |
| 125 sources = [ | 128 sources = [ |
| 126 "feature/mock_ime_feature_delegate.cc", | 129 "feature/mock_ime_feature_delegate.cc", |
| 127 "feature/mock_ime_feature_delegate.h", | 130 "feature/mock_ime_feature_delegate.h", |
| 131 "feature/mock_location_provider.cc", |
| 132 "feature/mock_location_provider.h", |
| 128 "feature/mock_render_widget_feature_delegate.cc", | 133 "feature/mock_render_widget_feature_delegate.cc", |
| 129 "feature/mock_render_widget_feature_delegate.h", | 134 "feature/mock_render_widget_feature_delegate.h", |
| 130 "session/test_client_session.cc", | 135 "session/test_client_session.cc", |
| 131 "session/test_client_session.h", | 136 "session/test_client_session.h", |
| 132 ] | 137 ] |
| 133 | 138 |
| 134 deps = [ | 139 deps = [ |
| 135 ":session", | 140 ":session", |
| 141 "//device/geolocation:device_geolocation", |
| 136 "//skia", | 142 "//skia", |
| 137 "//testing/gmock", | 143 "//testing/gmock", |
| 138 "//url", | 144 "//url", |
| 139 ] | 145 ] |
| 140 } | 146 } |
| 141 | 147 |
| 142 source_set("compositor") { | 148 source_set("compositor") { |
| 143 sources = [ | 149 sources = [ |
| 144 "feature/compositor/blimp_compositor.cc", | 150 "feature/compositor/blimp_compositor.cc", |
| 145 "feature/compositor/blimp_compositor.h", | 151 "feature/compositor/blimp_compositor.h", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 "//blimp/common/proto", | 193 "//blimp/common/proto", |
| 188 "//skia", | 194 "//skia", |
| 189 ] | 195 ] |
| 190 } | 196 } |
| 191 | 197 |
| 192 source_set("feature_unit_tests") { | 198 source_set("feature_unit_tests") { |
| 193 testonly = true | 199 testonly = true |
| 194 | 200 |
| 195 sources = [ | 201 sources = [ |
| 196 "feature/compositor/blimp_compositor_manager_unittest.cc", | 202 "feature/compositor/blimp_compositor_manager_unittest.cc", |
| 203 "feature/geolocation_feature_unittest.cc", |
| 197 "feature/render_widget_feature_unittest.cc", | 204 "feature/render_widget_feature_unittest.cc", |
| 198 "feature/tab_control_feature_unittest.cc", | 205 "feature/tab_control_feature_unittest.cc", |
| 199 ] | 206 ] |
| 200 | 207 |
| 201 deps = [ | 208 deps = [ |
| 202 ":compositor", | 209 ":compositor", |
| 203 ":test_support", | 210 ":test_support", |
| 204 "//base", | 211 "//base", |
| 205 "//base/test:test_support", | 212 "//base/test:test_support", |
| 206 "//blimp/client/core/compositor", | 213 "//blimp/client/core/compositor", |
| 207 "//blimp/common", | 214 "//blimp/common", |
| 208 "//blimp/common/proto", | 215 "//blimp/common/proto", |
| 209 "//blimp/net", | 216 "//blimp/net", |
| 210 "//blimp/net:test_support", | 217 "//blimp/net:test_support", |
| 211 "//blimp/test:support", | 218 "//blimp/test:support", |
| 212 "//cc/proto", | 219 "//cc/proto", |
| 220 "//device/geolocation:device_geolocation", |
| 213 "//net", | 221 "//net", |
| 214 "//net:test_support", | 222 "//net:test_support", |
| 215 "//skia", | 223 "//skia", |
| 216 "//testing/gmock", | 224 "//testing/gmock", |
| 217 "//testing/gtest", | 225 "//testing/gtest", |
| 218 "//ui/events:gesture_detection", | 226 "//ui/events:gesture_detection", |
| 219 "//ui/gfx/geometry", | 227 "//ui/gfx/geometry", |
| 220 ] | 228 ] |
| 221 | 229 |
| 222 if (is_linux) { | 230 if (is_linux) { |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 instrumentation_test_apk("blimp_test_apk") { | 488 instrumentation_test_apk("blimp_test_apk") { |
| 481 apk_name = "BlimpTest" | 489 apk_name = "BlimpTest" |
| 482 apk_under_test = ":blimp_apk" | 490 apk_under_test = ":blimp_apk" |
| 483 android_manifest = blimp_test_apk_manifest | 491 android_manifest = blimp_test_apk_manifest |
| 484 android_manifest_dep = ":blimp_test_apk_manifest" | 492 android_manifest_dep = ":blimp_test_apk_manifest" |
| 485 deps = [ | 493 deps = [ |
| 486 ":blimp_test_java", | 494 ":blimp_test_java", |
| 487 ] | 495 ] |
| 488 } | 496 } |
| 489 } | 497 } |
| OLD | NEW |