| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 source_set("base") { | |
| 6 visibility = [ "//cc" ] | |
| 7 | |
| 8 sources = [ | |
| 9 "blocking_task_runner.cc", | |
| 10 "blocking_task_runner.h", | |
| 11 "completion_event.h", | |
| 12 "math_util.cc", | |
| 13 "math_util.h", | |
| 14 "scoped_ptr_deque.h", | |
| 15 "scoped_ptr_vector.h", | |
| 16 "switches.cc", | |
| 17 "switches.h", | |
| 18 "util.h", | |
| 19 ] | |
| 20 | |
| 21 deps = [ | |
| 22 "//base", | |
| 23 "//base/third_party/dynamic_annotations", | |
| 24 "//skia", | |
| 25 "//ui/gfx", | |
| 26 "//ui/gfx/geometry", | |
| 27 ] | |
| 28 | |
| 29 defines = [ "CC_IMPLEMENTATION=1" ] | |
| 30 | |
| 31 if (!is_debug && (is_win || is_android)) { | |
| 32 configs -= [ "//build/config/compiler:optimize" ] | |
| 33 configs += [ "//build/config/compiler:optimize_max" ] | |
| 34 } | |
| 35 } | |
| OLD | NEW |