| 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 import("//cc/cc.gni") |
| 6 |
| 5 source_set("surface_id") { | 7 source_set("surface_id") { |
| 6 sources = [ | 8 sources = [ |
| 7 "frame_sink_id.h", | 9 "frame_sink_id.h", |
| 8 "local_frame_id.h", | 10 "local_frame_id.h", |
| 9 "surface_id.h", | 11 "surface_id.h", |
| 10 "surface_sequence.h", | 12 "surface_sequence.h", |
| 11 "surface_sequence_generator.cc", | 13 "surface_sequence_generator.cc", |
| 12 "surface_sequence_generator.h", | 14 "surface_sequence_generator.h", |
| 13 ] | 15 ] |
| 14 | 16 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "//base", | 57 "//base", |
| 56 "//base/third_party/dynamic_annotations", | 58 "//base/third_party/dynamic_annotations", |
| 57 "//cc", | 59 "//cc", |
| 58 "//gpu/command_buffer/client:gles2_interface", | 60 "//gpu/command_buffer/client:gles2_interface", |
| 59 "//gpu/command_buffer/common", | 61 "//gpu/command_buffer/common", |
| 60 "//skia", | 62 "//skia", |
| 61 "//ui/events:events_base", | 63 "//ui/events:events_base", |
| 62 "//ui/gfx", | 64 "//ui/gfx", |
| 63 "//ui/gfx/geometry", | 65 "//ui/gfx/geometry", |
| 64 ] | 66 ] |
| 65 | |
| 66 if (is_android && !is_debug) { | |
| 67 configs -= [ "//build/config/compiler:default_optimization" ] | |
| 68 configs += [ "//build/config/compiler:optimize_max" ] | |
| 69 } | |
| 70 } | 67 } |
| OLD | NEW |