| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 ":client", | 83 ":client", |
| 84 "//base", | 84 "//base", |
| 85 "//base/test:test_support", | 85 "//base/test:test_support", |
| 86 "//testing/gmock", | 86 "//testing/gmock", |
| 87 "//testing/gtest", | 87 "//testing/gtest", |
| 88 ] | 88 ] |
| 89 } | 89 } |
| 90 | 90 |
| 91 source_set("feature") { | 91 source_set("feature") { |
| 92 sources = [ | 92 sources = [ |
| 93 "feature/geolocation_feature.cc", |
| 94 "feature/geolocation_feature.h", |
| 93 "feature/ime_feature.cc", | 95 "feature/ime_feature.cc", |
| 94 "feature/ime_feature.h", | 96 "feature/ime_feature.h", |
| 95 "feature/navigation_feature.cc", | 97 "feature/navigation_feature.cc", |
| 96 "feature/navigation_feature.h", | 98 "feature/navigation_feature.h", |
| 97 "feature/render_widget_feature.cc", | 99 "feature/render_widget_feature.cc", |
| 98 "feature/render_widget_feature.h", | 100 "feature/render_widget_feature.h", |
| 99 "feature/settings_feature.cc", | 101 "feature/settings_feature.cc", |
| 100 "feature/settings_feature.h", | 102 "feature/settings_feature.h", |
| 101 "feature/tab_control_feature.cc", | 103 "feature/tab_control_feature.cc", |
| 102 "feature/tab_control_feature.h", | 104 "feature/tab_control_feature.h", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 119 "//blimp/common/proto", | 121 "//blimp/common/proto", |
| 120 ] | 122 ] |
| 121 } | 123 } |
| 122 | 124 |
| 123 source_set("test_support") { | 125 source_set("test_support") { |
| 124 testonly = true | 126 testonly = true |
| 125 | 127 |
| 126 sources = [ | 128 sources = [ |
| 127 "feature/mock_ime_feature_delegate.cc", | 129 "feature/mock_ime_feature_delegate.cc", |
| 128 "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", |
| 129 "feature/mock_navigation_feature_delegate.cc", | 133 "feature/mock_navigation_feature_delegate.cc", |
| 130 "feature/mock_navigation_feature_delegate.h", | 134 "feature/mock_navigation_feature_delegate.h", |
| 131 "feature/mock_render_widget_feature_delegate.cc", | 135 "feature/mock_render_widget_feature_delegate.cc", |
| 132 "feature/mock_render_widget_feature_delegate.h", | 136 "feature/mock_render_widget_feature_delegate.h", |
| 133 "session/test_client_session.cc", | 137 "session/test_client_session.cc", |
| 134 "session/test_client_session.h", | 138 "session/test_client_session.h", |
| 135 ] | 139 ] |
| 136 | 140 |
| 137 deps = [ | 141 deps = [ |
| 138 ":session", | 142 ":session", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 "//blimp/common/proto", | 194 "//blimp/common/proto", |
| 191 "//skia", | 195 "//skia", |
| 192 ] | 196 ] |
| 193 } | 197 } |
| 194 | 198 |
| 195 source_set("feature_unit_tests") { | 199 source_set("feature_unit_tests") { |
| 196 testonly = true | 200 testonly = true |
| 197 | 201 |
| 198 sources = [ | 202 sources = [ |
| 199 "feature/compositor/blimp_compositor_manager_unittest.cc", | 203 "feature/compositor/blimp_compositor_manager_unittest.cc", |
| 204 "feature/geolocation_feature_unittest.cc", |
| 200 "feature/navigation_feature_unittest.cc", | 205 "feature/navigation_feature_unittest.cc", |
| 201 "feature/render_widget_feature_unittest.cc", | 206 "feature/render_widget_feature_unittest.cc", |
| 202 "feature/tab_control_feature_unittest.cc", | 207 "feature/tab_control_feature_unittest.cc", |
| 203 ] | 208 ] |
| 204 | 209 |
| 205 deps = [ | 210 deps = [ |
| 206 ":compositor", | 211 ":compositor", |
| 207 ":test_support", | 212 ":test_support", |
| 208 "//base", | 213 "//base", |
| 209 "//base/test:test_support", | 214 "//base/test:test_support", |
| 210 "//blimp/client/core/compositor", | 215 "//blimp/client/core/compositor", |
| 211 "//blimp/common", | 216 "//blimp/common", |
| 212 "//blimp/common/proto", | 217 "//blimp/common/proto", |
| 213 "//blimp/net", | 218 "//blimp/net", |
| 214 "//blimp/net:test_support", | 219 "//blimp/net:test_support", |
| 215 "//blimp/test:support", | 220 "//blimp/test:support", |
| 216 "//cc/proto", | 221 "//cc/proto", |
| 222 "//device/geolocation:device_geolocation", |
| 217 "//net", | 223 "//net", |
| 218 "//net:test_support", | 224 "//net:test_support", |
| 219 "//skia", | 225 "//skia", |
| 220 "//testing/gmock", | 226 "//testing/gmock", |
| 221 "//testing/gtest", | 227 "//testing/gtest", |
| 222 "//ui/events:gesture_detection", | 228 "//ui/events:gesture_detection", |
| 223 "//ui/gfx/geometry", | 229 "//ui/gfx/geometry", |
| 224 ] | 230 ] |
| 225 | 231 |
| 226 if (is_linux) { | 232 if (is_linux) { |
| (...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 instrumentation_test_apk("blimp_test_apk") { | 489 instrumentation_test_apk("blimp_test_apk") { |
| 484 apk_name = "BlimpTest" | 490 apk_name = "BlimpTest" |
| 485 apk_under_test = ":blimp_apk" | 491 apk_under_test = ":blimp_apk" |
| 486 android_manifest = blimp_test_apk_manifest | 492 android_manifest = blimp_test_apk_manifest |
| 487 android_manifest_dep = ":blimp_test_apk_manifest" | 493 android_manifest_dep = ":blimp_test_apk_manifest" |
| 488 deps = [ | 494 deps = [ |
| 489 ":blimp_test_java", | 495 ":blimp_test_java", |
| 490 ] | 496 ] |
| 491 } | 497 } |
| 492 } | 498 } |
| OLD | NEW |