| 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", |
| 125 "//blimp/net:blimp_net", |
| 123 "//cc", | 126 "//cc", |
| 124 "//cc/proto", | 127 "//cc/proto", |
| 125 "//gpu/command_buffer/client", | 128 "//gpu/command_buffer/client", |
| 126 "//gpu/command_buffer/client:gl_in_process_context", | 129 "//gpu/command_buffer/client:gl_in_process_context", |
| 127 "//gpu/command_buffer/common:gles2_utils", | 130 "//gpu/command_buffer/common:gles2_utils", |
| 128 "//gpu/skia_bindings", | 131 "//gpu/skia_bindings", |
| 129 "//skia", | 132 "//skia", |
| 133 "//ui/base/ime:text_input_types", |
| 130 "//ui/events/blink", | 134 "//ui/events/blink", |
| 131 "//ui/events/gestures/blink", | 135 "//ui/events/gestures/blink", |
| 132 "//ui/gl", | 136 "//ui/gl", |
| 133 ] | 137 ] |
| 134 | 138 |
| 135 public_deps = [ | 139 public_deps = [ |
| 136 "//blimp/common/proto", | 140 "//blimp/common/proto", |
| 137 ] | 141 ] |
| 138 } | 142 } |
| 139 | 143 |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 shared_library("blimp_client_android") { | 350 shared_library("blimp_client_android") { |
| 347 deps = [ | 351 deps = [ |
| 348 ":blimp_client", | 352 ":blimp_client", |
| 349 ":feature", | 353 ":feature", |
| 350 ":jni_headers", | 354 ":jni_headers", |
| 351 "//base", | 355 "//base", |
| 352 "//blimp/common/proto", | 356 "//blimp/common/proto", |
| 353 "//blimp/net:blimp_net", | 357 "//blimp/net:blimp_net", |
| 354 "//components/safe_json/android:safe_json_jni_headers", | 358 "//components/safe_json/android:safe_json_jni_headers", |
| 355 "//skia", | 359 "//skia", |
| 360 "//ui/base/ime:text_input_types", |
| 356 "//ui/gfx/geometry", | 361 "//ui/gfx/geometry", |
| 357 "//ui/gl", | 362 "//ui/gl", |
| 358 "//url:url", | 363 "//url:url", |
| 359 ] | 364 ] |
| 360 | 365 |
| 361 sources = [ | 366 sources = [ |
| 362 "app/android/blimp_client_session_android.cc", | 367 "app/android/blimp_client_session_android.cc", |
| 363 "app/android/blimp_client_session_android.h", | 368 "app/android/blimp_client_session_android.h", |
| 364 "app/android/blimp_compositor_manager_android.cc", | 369 "app/android/blimp_compositor_manager_android.cc", |
| 365 "app/android/blimp_compositor_manager_android.h", | 370 "app/android/blimp_compositor_manager_android.h", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 apk_name = "BlimpTest" | 405 apk_name = "BlimpTest" |
| 401 apk_under_test = ":blimp_apk" | 406 apk_under_test = ":blimp_apk" |
| 402 android_manifest = blimp_test_apk_manifest | 407 android_manifest = blimp_test_apk_manifest |
| 403 deps = [ | 408 deps = [ |
| 404 ":blimp_test_apk_manifest", | 409 ":blimp_test_apk_manifest", |
| 405 ":blimp_test_java", | 410 ":blimp_test_java", |
| 406 google_play_services_resources, | 411 google_play_services_resources, |
| 407 ] | 412 ] |
| 408 } | 413 } |
| 409 } | 414 } |
| OLD | NEW |