| 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 "//blimp/common/proto", | 163 "//blimp/common/proto", |
| 164 ] | 164 ] |
| 165 } | 165 } |
| 166 | 166 |
| 167 source_set("test_support") { | 167 source_set("test_support") { |
| 168 testonly = true | 168 testonly = true |
| 169 | 169 |
| 170 sources = [ | 170 sources = [ |
| 171 "feature/mock_ime_feature_delegate.cc", | 171 "feature/mock_ime_feature_delegate.cc", |
| 172 "feature/mock_ime_feature_delegate.h", | 172 "feature/mock_ime_feature_delegate.h", |
| 173 "feature/mock_navigation_feature.cc", |
| 174 "feature/mock_navigation_feature.h", |
| 173 "feature/mock_navigation_feature_delegate.cc", | 175 "feature/mock_navigation_feature_delegate.cc", |
| 174 "feature/mock_navigation_feature_delegate.h", | 176 "feature/mock_navigation_feature_delegate.h", |
| 175 "feature/mock_render_widget_feature_delegate.cc", | 177 "feature/mock_render_widget_feature_delegate.cc", |
| 176 "feature/mock_render_widget_feature_delegate.h", | 178 "feature/mock_render_widget_feature_delegate.h", |
| 177 "session/test_client_session.cc", | 179 "session/test_client_session.cc", |
| 178 "session/test_client_session.h", | 180 "session/test_client_session.h", |
| 179 ] | 181 ] |
| 180 | 182 |
| 181 deps = [ | 183 deps = [ |
| 182 ":session", | 184 ":session", |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 instrumentation_test_apk("blimp_test_apk") { | 533 instrumentation_test_apk("blimp_test_apk") { |
| 532 apk_name = "BlimpTest" | 534 apk_name = "BlimpTest" |
| 533 apk_under_test = ":blimp_apk" | 535 apk_under_test = ":blimp_apk" |
| 534 android_manifest = blimp_test_apk_manifest | 536 android_manifest = blimp_test_apk_manifest |
| 535 android_manifest_dep = ":blimp_test_apk_manifest" | 537 android_manifest_dep = ":blimp_test_apk_manifest" |
| 536 deps = [ | 538 deps = [ |
| 537 ":blimp_test_java", | 539 ":blimp_test_java", |
| 538 ] | 540 ] |
| 539 } | 541 } |
| 540 } | 542 } |
| OLD | NEW |