| 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 "invalidation_region.cc", | 17 "invalidation_region.cc", |
| 18 "invalidation_region.h", | 18 "invalidation_region.h", |
| 19 "list_container.h", | 19 "list_container.h", |
| 20 "list_container_helper.cc", | 20 "list_container_helper.cc", |
| 21 "list_container_helper.h", | 21 "list_container_helper.h", |
| 22 "math_util.cc", | 22 "math_util.cc", |
| 23 "math_util.h", | 23 "math_util.h", |
| 24 "pyramid_sequence.cc", |
| 25 "pyramid_sequence.h", |
| 24 "random_access_list_container.h", | 26 "random_access_list_container.h", |
| 25 "region.cc", | 27 "region.cc", |
| 26 "region.h", | 28 "region.h", |
| 27 "resource_id.h", | 29 "resource_id.h", |
| 28 "rolling_time_delta_history.cc", | 30 "rolling_time_delta_history.cc", |
| 29 "rolling_time_delta_history.h", | 31 "rolling_time_delta_history.h", |
| 30 "rtree.cc", | 32 "rtree.cc", |
| 31 "rtree.h", | 33 "rtree.h", |
| 32 "simple_enclosed_region.cc", | 34 "simple_enclosed_region.cc", |
| 33 "simple_enclosed_region.h", | 35 "simple_enclosed_region.h", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 49 "//ui/gfx/geometry", | 51 "//ui/gfx/geometry", |
| 50 ] | 52 ] |
| 51 | 53 |
| 52 defines = [ "CC_IMPLEMENTATION=1" ] | 54 defines = [ "CC_IMPLEMENTATION=1" ] |
| 53 | 55 |
| 54 if (!is_debug && (is_win || is_android)) { | 56 if (!is_debug && (is_win || is_android)) { |
| 55 configs -= [ "//build/config/compiler:default_optimization" ] | 57 configs -= [ "//build/config/compiler:default_optimization" ] |
| 56 configs += [ "//build/config/compiler:optimize_max" ] | 58 configs += [ "//build/config/compiler:optimize_max" ] |
| 57 } | 59 } |
| 58 } | 60 } |
| OLD | NEW |