OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'cc_source_files': [ | 7 'cc_source_files': [ |
8 'animation.cc', | 8 'animation.cc', |
9 'animation.h', | 9 'animation.h', |
10 'animation_curve.cc', | 10 'animation_curve.cc', |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 'layer_tree_impl.cc', | 119 'layer_tree_impl.cc', |
120 'layer_tree_impl.h', | 120 'layer_tree_impl.h', |
121 'layer_tree_settings.cc', | 121 'layer_tree_settings.cc', |
122 'layer_tree_settings.h', | 122 'layer_tree_settings.h', |
123 'layer_updater.cc', | 123 'layer_updater.cc', |
124 'layer_updater.h', | 124 'layer_updater.h', |
125 'managed_memory_policy.cc', | 125 'managed_memory_policy.cc', |
126 'managed_memory_policy.h', | 126 'managed_memory_policy.h', |
127 'math_util.cc', | 127 'math_util.cc', |
128 'math_util.h', | 128 'math_util.h', |
| 129 'memory_history.cc', |
| 130 'memory_history.h', |
129 'nine_patch_layer.cc', | 131 'nine_patch_layer.cc', |
130 'nine_patch_layer.h', | 132 'nine_patch_layer.h', |
131 'nine_patch_layer_impl.cc', | 133 'nine_patch_layer_impl.cc', |
132 'nine_patch_layer_impl.h', | 134 'nine_patch_layer_impl.h', |
133 'occlusion_tracker.cc', | 135 'occlusion_tracker.cc', |
134 'occlusion_tracker.h', | 136 'occlusion_tracker.h', |
135 'output_surface.h', | 137 'output_surface.h', |
136 'output_surface_client.h', | 138 'output_surface_client.h', |
137 'overdraw_metrics.cc', | 139 'overdraw_metrics.cc', |
138 'overdraw_metrics.h', | 140 'overdraw_metrics.h', |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 'include_dirs': [ | 352 'include_dirs': [ |
351 # TODO(jamesr): Remove once https://webkit.org/b/105259 lands + rolls | 353 # TODO(jamesr): Remove once https://webkit.org/b/105259 lands + rolls |
352 '<(webkit_src_dir)/Source/Platform/chromium' | 354 '<(webkit_src_dir)/Source/Platform/chromium' |
353 ] | 355 ] |
354 }, | 356 }, |
355 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 357 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
356 'msvs_disabled_warnings': [ 4267, ], | 358 'msvs_disabled_warnings': [ 4267, ], |
357 }, | 359 }, |
358 ], | 360 ], |
359 } | 361 } |
OLD | NEW |