| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "feature/compositor/blimp_context_provider.cc", | 48 "feature/compositor/blimp_context_provider.cc", |
| 49 "feature/compositor/blimp_context_provider.h", | 49 "feature/compositor/blimp_context_provider.h", |
| 50 "feature/compositor/blimp_input_handler_wrapper.cc", | 50 "feature/compositor/blimp_input_handler_wrapper.cc", |
| 51 "feature/compositor/blimp_input_handler_wrapper.h", | 51 "feature/compositor/blimp_input_handler_wrapper.h", |
| 52 "feature/compositor/blimp_input_manager.cc", | 52 "feature/compositor/blimp_input_manager.cc", |
| 53 "feature/compositor/blimp_input_manager.h", | 53 "feature/compositor/blimp_input_manager.h", |
| 54 "feature/compositor/blimp_layer_tree_settings.cc", | 54 "feature/compositor/blimp_layer_tree_settings.cc", |
| 55 "feature/compositor/blimp_layer_tree_settings.h", | 55 "feature/compositor/blimp_layer_tree_settings.h", |
| 56 "feature/compositor/blimp_output_surface.cc", | 56 "feature/compositor/blimp_output_surface.cc", |
| 57 "feature/compositor/blimp_output_surface.h", | 57 "feature/compositor/blimp_output_surface.h", |
| 58 "feature/compositor/test/dummy_layer_driver.cc", | |
| 59 "feature/compositor/test/dummy_layer_driver.h", | |
| 60 "feature/navigation_feature.cc", | 58 "feature/navigation_feature.cc", |
| 61 "feature/navigation_feature.h", | 59 "feature/navigation_feature.h", |
| 62 "feature/render_widget_feature.cc", | 60 "feature/render_widget_feature.cc", |
| 63 "feature/render_widget_feature.h", | 61 "feature/render_widget_feature.h", |
| 64 "feature/tab_control_feature.cc", | 62 "feature/tab_control_feature.cc", |
| 65 "feature/tab_control_feature.h", | 63 "feature/tab_control_feature.h", |
| 66 ] | 64 ] |
| 67 | 65 |
| 68 deps = [ | 66 deps = [ |
| 69 "//blimp/common:blimp_common", | 67 "//blimp/common:blimp_common", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 80 | 78 |
| 81 public_deps = [ | 79 public_deps = [ |
| 82 "//blimp/common/proto", | 80 "//blimp/common/proto", |
| 83 ] | 81 ] |
| 84 } | 82 } |
| 85 | 83 |
| 86 source_set("feature_unit_tests") { | 84 source_set("feature_unit_tests") { |
| 87 testonly = true | 85 testonly = true |
| 88 | 86 |
| 89 sources = [ | 87 sources = [ |
| 88 "feature/compositor/blimp_compositor_unittest.cc", |
| 90 "feature/navigation_feature_unittest.cc", | 89 "feature/navigation_feature_unittest.cc", |
| 91 "feature/render_widget_feature_unittest.cc", | 90 "feature/render_widget_feature_unittest.cc", |
| 92 "feature/tab_control_feature_unittest.cc", | 91 "feature/tab_control_feature_unittest.cc", |
| 93 ] | 92 ] |
| 94 | 93 |
| 95 deps = [ | 94 deps = [ |
| 96 ":blimp_client", | 95 ":blimp_client", |
| 97 ":feature", | 96 ":feature", |
| 98 "//base", | 97 "//base", |
| 99 "//base/test:run_all_unittests", | 98 "//base/test:run_all_unittests", |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 apk_name = "BlimpTest" | 320 apk_name = "BlimpTest" |
| 322 apk_under_test = ":blimp_apk" | 321 apk_under_test = ":blimp_apk" |
| 323 android_manifest = blimp_test_apk_manifest | 322 android_manifest = blimp_test_apk_manifest |
| 324 deps = [ | 323 deps = [ |
| 325 ":blimp_test_apk_manifest", | 324 ":blimp_test_apk_manifest", |
| 326 ":blimp_test_java", | 325 ":blimp_test_java", |
| 327 google_play_services_resources, | 326 google_play_services_resources, |
| 328 ] | 327 ] |
| 329 } | 328 } |
| 330 } | 329 } |
| OLD | NEW |