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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 'cc_source_files': [ | 8 'cc_source_files': [ |
9 'animation/animation.cc', | 9 'animation/animation.cc', |
10 'animation/animation.h', | 10 'animation/animation.h', |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 'debug/traced_picture.cc', | 74 'debug/traced_picture.cc', |
75 'debug/traced_picture.h', | 75 'debug/traced_picture.h', |
76 'debug/traced_value.cc', | 76 'debug/traced_value.cc', |
77 'debug/traced_value.h', | 77 'debug/traced_value.h', |
78 'input/input_handler.h', | 78 'input/input_handler.h', |
79 'input/page_scale_animation.cc', | 79 'input/page_scale_animation.cc', |
80 'input/page_scale_animation.h', | 80 'input/page_scale_animation.h', |
81 'input/top_controls_manager.cc', | 81 'input/top_controls_manager.cc', |
82 'input/top_controls_manager.h', | 82 'input/top_controls_manager.h', |
83 'input/top_controls_manager_client.h', | 83 'input/top_controls_manager_client.h', |
| 84 'input/viewport_scrollbar.cc', |
| 85 'input/viewport_scrollbar.h', |
84 'layers/append_quads_data.h', | 86 'layers/append_quads_data.h', |
85 'layers/compositing_reasons.h', | 87 'layers/compositing_reasons.h', |
86 'layers/content_layer.cc', | 88 'layers/content_layer.cc', |
87 'layers/content_layer.h', | 89 'layers/content_layer.h', |
88 'layers/content_layer_client.h', | 90 'layers/content_layer_client.h', |
89 'layers/contents_scaling_layer.cc', | 91 'layers/contents_scaling_layer.cc', |
90 'layers/contents_scaling_layer.h', | 92 'layers/contents_scaling_layer.h', |
91 'layers/delegated_renderer_layer.cc', | 93 'layers/delegated_renderer_layer.cc', |
92 'layers/delegated_renderer_layer.h', | 94 'layers/delegated_renderer_layer.h', |
93 'layers/delegated_renderer_layer_client.h', | 95 'layers/delegated_renderer_layer_client.h', |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 'CC_IMPLEMENTATION=1', | 370 'CC_IMPLEMENTATION=1', |
369 ], | 371 ], |
370 'sources': [ | 372 'sources': [ |
371 '<@(cc_source_files)', | 373 '<@(cc_source_files)', |
372 ], | 374 ], |
373 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 375 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
374 'msvs_disabled_warnings': [ 4267, ], | 376 'msvs_disabled_warnings': [ 4267, ], |
375 }, | 377 }, |
376 ], | 378 ], |
377 } | 379 } |
OLD | NEW |