| 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/navigation_feature.cc", | 113     "feature/navigation_feature.cc", | 
| 114     "feature/navigation_feature.h", | 114     "feature/navigation_feature.h", | 
| 115     "feature/render_widget_feature.cc", | 115     "feature/render_widget_feature.cc", | 
| 116     "feature/render_widget_feature.h", | 116     "feature/render_widget_feature.h", | 
| 117     "feature/tab_control_feature.cc", | 117     "feature/tab_control_feature.cc", | 
| 118     "feature/tab_control_feature.h", | 118     "feature/tab_control_feature.h", | 
|  | 119     "feature/web_input_feature.cc", | 
|  | 120     "feature/web_input_feature.h", | 
| 119   ] | 121   ] | 
| 120 | 122 | 
| 121   deps = [ | 123   deps = [ | 
| 122     "//blimp/common:blimp_common", | 124     "//blimp/common:blimp_common", | 
| 123     "//cc", | 125     "//cc", | 
| 124     "//cc/proto", | 126     "//cc/proto", | 
| 125     "//gpu/command_buffer/client", | 127     "//gpu/command_buffer/client", | 
| 126     "//gpu/command_buffer/client:gl_in_process_context", | 128     "//gpu/command_buffer/client:gl_in_process_context", | 
| 127     "//gpu/command_buffer/common:gles2_utils", | 129     "//gpu/command_buffer/common:gles2_utils", | 
| 128     "//gpu/skia_bindings", | 130     "//gpu/skia_bindings", | 
| (...skipping 271 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 | 
|---|