| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 "feature/compositor/blimp_input_handler_wrapper.cc", | 103 "feature/compositor/blimp_input_handler_wrapper.cc", |
| 104 "feature/compositor/blimp_input_handler_wrapper.h", | 104 "feature/compositor/blimp_input_handler_wrapper.h", |
| 105 "feature/compositor/blimp_input_manager.cc", | 105 "feature/compositor/blimp_input_manager.cc", |
| 106 "feature/compositor/blimp_input_manager.h", | 106 "feature/compositor/blimp_input_manager.h", |
| 107 "feature/compositor/blimp_layer_tree_settings.cc", | 107 "feature/compositor/blimp_layer_tree_settings.cc", |
| 108 "feature/compositor/blimp_layer_tree_settings.h", | 108 "feature/compositor/blimp_layer_tree_settings.h", |
| 109 "feature/compositor/blimp_output_surface.cc", | 109 "feature/compositor/blimp_output_surface.cc", |
| 110 "feature/compositor/blimp_output_surface.h", | 110 "feature/compositor/blimp_output_surface.h", |
| 111 "feature/compositor/decoding_image_generator.cc", | 111 "feature/compositor/decoding_image_generator.cc", |
| 112 "feature/compositor/decoding_image_generator.h", | 112 "feature/compositor/decoding_image_generator.h", |
| 113 "feature/ime_feature.cc", |
| 114 "feature/ime_feature.h", |
| 113 "feature/navigation_feature.cc", | 115 "feature/navigation_feature.cc", |
| 114 "feature/navigation_feature.h", | 116 "feature/navigation_feature.h", |
| 115 "feature/render_widget_feature.cc", | 117 "feature/render_widget_feature.cc", |
| 116 "feature/render_widget_feature.h", | 118 "feature/render_widget_feature.h", |
| 117 "feature/tab_control_feature.cc", | 119 "feature/tab_control_feature.cc", |
| 118 "feature/tab_control_feature.h", | 120 "feature/tab_control_feature.h", |
| 119 ] | 121 ] |
| 120 | 122 |
| 121 deps = [ | 123 deps = [ |
| 122 "//blimp/common:blimp_common", | 124 "//blimp/common:blimp_common", |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 apk_name = "BlimpTest" | 402 apk_name = "BlimpTest" |
| 401 apk_under_test = ":blimp_apk" | 403 apk_under_test = ":blimp_apk" |
| 402 android_manifest = blimp_test_apk_manifest | 404 android_manifest = blimp_test_apk_manifest |
| 403 deps = [ | 405 deps = [ |
| 404 ":blimp_test_apk_manifest", | 406 ":blimp_test_apk_manifest", |
| 405 ":blimp_test_java", | 407 ":blimp_test_java", |
| 406 google_play_services_resources, | 408 google_play_services_resources, |
| 407 ] | 409 ] |
| 408 } | 410 } |
| 409 } | 411 } |
| OLD | NEW |