| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", | 113 "feature/ime_feature.cc", |
| 114 "feature/ime_feature.h", | 114 "feature/ime_feature.h", |
| 115 "feature/navigation_feature.cc", | 115 "feature/navigation_feature.cc", |
| 116 "feature/navigation_feature.h", | 116 "feature/navigation_feature.h", |
| 117 "feature/render_widget_feature.cc", | 117 "feature/render_widget_feature.cc", |
| 118 "feature/render_widget_feature.h", | 118 "feature/render_widget_feature.h", |
| 119 "feature/settings_feature.cc", |
| 120 "feature/settings_feature.h", |
| 119 "feature/tab_control_feature.cc", | 121 "feature/tab_control_feature.cc", |
| 120 "feature/tab_control_feature.h", | 122 "feature/tab_control_feature.h", |
| 121 ] | 123 ] |
| 122 | 124 |
| 123 deps = [ | 125 deps = [ |
| 124 "//blimp/common:blimp_common", | 126 "//blimp/common:blimp_common", |
| 125 "//blimp/net:blimp_net", | 127 "//blimp/net:blimp_net", |
| 126 "//cc", | 128 "//cc", |
| 127 "//cc/proto", | 129 "//cc/proto", |
| 128 "//gpu/command_buffer/client", | 130 "//gpu/command_buffer/client", |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 apk_name = "BlimpTest" | 407 apk_name = "BlimpTest" |
| 406 apk_under_test = ":blimp_apk" | 408 apk_under_test = ":blimp_apk" |
| 407 android_manifest = blimp_test_apk_manifest | 409 android_manifest = blimp_test_apk_manifest |
| 408 deps = [ | 410 deps = [ |
| 409 ":blimp_test_apk_manifest", | 411 ":blimp_test_apk_manifest", |
| 410 ":blimp_test_java", | 412 ":blimp_test_java", |
| 411 google_play_services_resources, | 413 google_play_services_resources, |
| 412 ] | 414 ] |
| 413 } | 415 } |
| 414 } | 416 } |
| OLD | NEW |