| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 source_set("surface_id") { | 5 source_set("surface_id") { |
| 6 sources = [ | 6 sources = [ |
| 7 "surface_id.h", | 7 "surface_id.h", |
| 8 ] | 8 ] |
| 9 | 9 |
| 10 deps = [ | 10 deps = [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "onscreen_display_client.h", | 24 "onscreen_display_client.h", |
| 25 "surface.cc", | 25 "surface.cc", |
| 26 "surface.h", | 26 "surface.h", |
| 27 "surface_aggregator.cc", | 27 "surface_aggregator.cc", |
| 28 "surface_aggregator.h", | 28 "surface_aggregator.h", |
| 29 "surface_display_output_surface.cc", | 29 "surface_display_output_surface.cc", |
| 30 "surface_display_output_surface.h", | 30 "surface_display_output_surface.h", |
| 31 "surface_factory.cc", | 31 "surface_factory.cc", |
| 32 "surface_factory.h", | 32 "surface_factory.h", |
| 33 "surface_factory_client.h", | 33 "surface_factory_client.h", |
| 34 "surface_hittest.cc", |
| 35 "surface_hittest.h", |
| 34 "surface_id_allocator.cc", | 36 "surface_id_allocator.cc", |
| 35 "surface_id_allocator.h", | 37 "surface_id_allocator.h", |
| 36 "surface_manager.cc", | 38 "surface_manager.cc", |
| 37 "surface_manager.h", | 39 "surface_manager.h", |
| 38 "surface_resource_holder.cc", | 40 "surface_resource_holder.cc", |
| 39 "surface_resource_holder.h", | 41 "surface_resource_holder.h", |
| 40 "surfaces_export.h", | 42 "surfaces_export.h", |
| 41 ] | 43 ] |
| 42 | 44 |
| 43 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ] | 45 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ] |
| 44 | 46 |
| 45 deps = [ | 47 deps = [ |
| 46 ":surface_id", | 48 ":surface_id", |
| 47 "//base", | 49 "//base", |
| 48 "//base/third_party/dynamic_annotations", | 50 "//base/third_party/dynamic_annotations", |
| 49 "//cc", | 51 "//cc", |
| 50 "//gpu/command_buffer/client:gles2_interface", | 52 "//gpu/command_buffer/client:gles2_interface", |
| 51 "//skia", | 53 "//skia", |
| 52 "//ui/events:events_base", | 54 "//ui/events:events_base", |
| 53 "//ui/gfx", | 55 "//ui/gfx", |
| 54 "//ui/gfx/geometry", | 56 "//ui/gfx/geometry", |
| 55 ] | 57 ] |
| 56 | 58 |
| 57 if (is_android && !is_debug) { | 59 if (is_android && !is_debug) { |
| 58 configs -= [ "//build/config/compiler:optimize" ] | 60 configs -= [ "//build/config/compiler:optimize" ] |
| 59 configs += [ "//build/config/compiler:optimize_max" ] | 61 configs += [ "//build/config/compiler:optimize_max" ] |
| 60 } | 62 } |
| 61 } | 63 } |
| OLD | NEW |