| 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 } | 8 } |
| 9 | 9 |
| 10 shared_library("blimp_client") { | 10 shared_library("blimp_client") { |
| 11 sources = [ | 11 sources = [ |
| 12 "compositor/blimp_compositor.cc", | 12 "compositor/blimp_compositor.cc", |
| 13 "compositor/blimp_compositor.h", | 13 "compositor/blimp_compositor.h", |
| 14 "compositor/blimp_context_provider.cc", | 14 "compositor/blimp_context_provider.cc", |
| 15 "compositor/blimp_context_provider.h", | 15 "compositor/blimp_context_provider.h", |
| 16 "compositor/blimp_layer_tree_settings.cc", |
| 17 "compositor/blimp_layer_tree_settings.h", |
| 16 "compositor/blimp_output_surface.cc", | 18 "compositor/blimp_output_surface.cc", |
| 17 "compositor/blimp_output_surface.h", | 19 "compositor/blimp_output_surface.h", |
| 18 "compositor/test/dummy_layer_driver.cc", | 20 "compositor/test/dummy_layer_driver.cc", |
| 19 "compositor/test/dummy_layer_driver.h", | 21 "compositor/test/dummy_layer_driver.h", |
| 22 |
| 23 # TODO(dtrainor): Remove this once the LayerTreeHost settings for Blimp |
| 24 # are finalized or are pushed from the server component. See |
| 25 # crbug.com/527655. |
| 26 "../../content/public/common/content_switches.cc", |
| 27 "../../ui/native_theme/native_theme_switches.cc", |
| 20 ] | 28 ] |
| 21 | 29 |
| 22 deps = [ | 30 deps = [ |
| 23 "//base", | 31 "//base", |
| 24 "//blimp/common:blimp_common", | 32 "//blimp/common:blimp_common", |
| 25 "//cc", | 33 "//cc", |
| 26 "//gpu/command_buffer/client:gl_in_process_context", | 34 "//gpu/command_buffer/client:gl_in_process_context", |
| 27 "//gpu/command_buffer/common:gles2_utils", | 35 "//gpu/command_buffer/common:gles2_utils", |
| 28 "//gpu/skia_bindings", | 36 "//gpu/skia_bindings", |
| 29 "//ui/gfx/geometry", | 37 "//ui/gfx/geometry", |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 apk_name = "BlimpTest" | 201 apk_name = "BlimpTest" |
| 194 apk_under_test = ":blimp_apk" | 202 apk_under_test = ":blimp_apk" |
| 195 android_manifest = blimp_test_apk_manifest | 203 android_manifest = blimp_test_apk_manifest |
| 196 deps = [ | 204 deps = [ |
| 197 ":blimp_test_apk_manifest", | 205 ":blimp_test_apk_manifest", |
| 198 ":blimp_test_java", | 206 ":blimp_test_java", |
| 199 google_play_services_resources, | 207 google_play_services_resources, |
| 200 ] | 208 ] |
| 201 } | 209 } |
| 202 } | 210 } |
| OLD | NEW |