| 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 source_set("base") { | 5 source_set("base") { |
| 6 visibility = [ "//cc" ] | 6 visibility = [ "//cc" ] |
| 7 | 7 |
| 8 sources = [ | 8 sources = [ |
| 9 "completion_event.h", | 9 "completion_event.h", |
| 10 "container_util.h", | 10 "container_util.h", |
| 11 "contiguous_container.cc", | 11 "contiguous_container.cc", |
| 12 "contiguous_container.h", | 12 "contiguous_container.h", |
| 13 "delayed_unique_notifier.cc", | 13 "delayed_unique_notifier.cc", |
| 14 "delayed_unique_notifier.h", | 14 "delayed_unique_notifier.h", |
| 15 "histograms.cc", | 15 "histograms.cc", |
| 16 "histograms.h", | 16 "histograms.h", |
| 17 "index_rect.cc", | 17 "index_rect.cc", |
| 18 "index_rect.h", | 18 "index_rect.h", |
| 19 "invalidation_region.cc", | 19 "invalidation_region.cc", |
| 20 "invalidation_region.h", | 20 "invalidation_region.h", |
| 21 "list_container.h", | 21 "list_container.h", |
| 22 "list_container_helper.cc", | 22 "list_container_helper.cc", |
| 23 "list_container_helper.h", | 23 "list_container_helper.h", |
| 24 "math_util.cc", | 24 "math_util.cc", |
| 25 "math_util.h", | 25 "math_util.h", |
| 26 "pyramid_sequence.cc", |
| 27 "pyramid_sequence.h", |
| 26 "random_access_list_container.h", | 28 "random_access_list_container.h", |
| 27 "region.cc", | 29 "region.cc", |
| 28 "region.h", | 30 "region.h", |
| 29 "resource_id.h", | 31 "resource_id.h", |
| 30 "reverse_spiral_iterator.cc", | 32 "reverse_spiral_iterator.cc", |
| 31 "reverse_spiral_iterator.h", | 33 "reverse_spiral_iterator.h", |
| 32 "rolling_time_delta_history.cc", | 34 "rolling_time_delta_history.cc", |
| 33 "rolling_time_delta_history.h", | 35 "rolling_time_delta_history.h", |
| 34 "rtree.cc", | 36 "rtree.cc", |
| 35 "rtree.h", | 37 "rtree.h", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 55 "//ui/gfx/geometry", | 57 "//ui/gfx/geometry", |
| 56 ] | 58 ] |
| 57 | 59 |
| 58 defines = [ "CC_IMPLEMENTATION=1" ] | 60 defines = [ "CC_IMPLEMENTATION=1" ] |
| 59 | 61 |
| 60 if (!is_debug && (is_win || is_android)) { | 62 if (!is_debug && (is_win || is_android)) { |
| 61 configs -= [ "//build/config/compiler:default_optimization" ] | 63 configs -= [ "//build/config/compiler:default_optimization" ] |
| 62 configs += [ "//build/config/compiler:optimize_max" ] | 64 configs += [ "//build/config/compiler:optimize_max" ] |
| 63 } | 65 } |
| 64 } | 66 } |
| OLD | NEW |