Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Side by Side Diff: cc/cc.gyp

Issue 2315743005: cc: Remove all gyp files. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/blink/cc_blink_tests.gyp ('k') | cc/cc_tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'targets': [
10 {
11 # GN version: //cc
12 'target_name': 'cc',
13 'type': '<(component)',
14 'dependencies': [
15 'cc_proto',
16 '<(DEPTH)/base/base.gyp:base',
17 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
18 '<(DEPTH)/gpu/gpu.gyp:gpu',
19 '<(DEPTH)/media/media.gyp:media',
20 '<(DEPTH)/skia/skia.gyp:skia',
21 '<(DEPTH)/third_party/protobuf/protobuf.gyp:protobuf_lite',
22 '<(DEPTH)/ui/events/events.gyp:events_base',
23 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
24 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
25 '<(DEPTH)/ui/gl/gl.gyp:gl',
26 ],
27 'variables': {
28 'optimize': 'max',
29 },
30 'export_dependent_settings': [
31 '<(DEPTH)/skia/skia.gyp:skia',
32 ],
33 'defines': [
34 'CC_IMPLEMENTATION=1',
35 ],
36 'sources': [
37 # Note: file list duplicated in GN build.
38 'animation/animation.cc',
39 'animation/animation.h',
40 'animation/animation_curve.cc',
41 'animation/animation_curve.h',
42 'animation/animation_delegate.h',
43 'animation/animation_events.cc',
44 'animation/animation_events.h',
45 'animation/animation_host.cc',
46 'animation/animation_host.h',
47 'animation/animation_id_provider.cc',
48 'animation/animation_id_provider.h',
49 'animation/animation_player.cc',
50 'animation/animation_player.h',
51 'animation/animation_timeline.cc',
52 'animation/animation_timeline.h',
53 'animation/element_animations.cc',
54 'animation/element_animations.h',
55 'animation/element_id.cc',
56 'animation/element_id.h',
57 'animation/keyframed_animation_curve.cc',
58 'animation/keyframed_animation_curve.h',
59 'animation/scroll_offset_animation_curve.cc',
60 'animation/scroll_offset_animation_curve.h',
61 'animation/scroll_offset_animations_impl.cc',
62 'animation/scroll_offset_animations_impl.h',
63 'animation/scroll_offset_animations.cc',
64 'animation/scroll_offset_animations.h',
65 'animation/target_property.cc',
66 'animation/target_property.h',
67 'animation/timing_function.cc',
68 'animation/timing_function.h',
69 'animation/transform_operation.cc',
70 'animation/transform_operation.h',
71 'animation/transform_operations.cc',
72 'animation/transform_operations.h',
73 'base/completion_event.h',
74 'base/container_util.h',
75 'base/contiguous_container.cc',
76 'base/contiguous_container.h',
77 'base/delayed_unique_notifier.cc',
78 'base/delayed_unique_notifier.h',
79 'base/histograms.cc',
80 'base/histograms.h',
81 'base/invalidation_region.cc',
82 'base/invalidation_region.h',
83 'base/list_container.h',
84 'base/list_container_helper.cc',
85 'base/list_container_helper.h',
86 'base/math_util.cc',
87 'base/math_util.h',
88 'base/random_access_list_container.h',
89 'base/region.cc',
90 'base/region.h',
91 'base/resource_id.h',
92 'base/rolling_time_delta_history.cc',
93 'base/rolling_time_delta_history.h',
94 'base/rtree.cc',
95 'base/rtree.h',
96 'base/simple_enclosed_region.cc',
97 'base/simple_enclosed_region.h',
98 'base/switches.cc',
99 'base/switches.h',
100 'base/synced_property.h',
101 'base/tiling_data.cc',
102 'base/tiling_data.h',
103 'base/time_util.h',
104 'base/unique_notifier.cc',
105 'base/unique_notifier.h',
106 'blimp/client_picture_cache.h',
107 'blimp/engine_picture_cache.h',
108 'blimp/image_serialization_processor.h',
109 'blimp/picture_data.cc',
110 'blimp/picture_data.h',
111 'blimp/picture_data_conversions.cc',
112 'blimp/picture_data_conversions.h',
113 'debug/benchmark_instrumentation.cc',
114 'debug/benchmark_instrumentation.h',
115 'debug/debug_colors.cc',
116 'debug/debug_colors.h',
117 'debug/debug_rect_history.cc',
118 'debug/debug_rect_history.h',
119 'debug/devtools_instrumentation.h',
120 'debug/frame_rate_counter.cc',
121 'debug/frame_rate_counter.h',
122 'debug/frame_viewer_instrumentation.cc',
123 'debug/frame_viewer_instrumentation.h',
124 'debug/invalidation_benchmark.cc',
125 'debug/invalidation_benchmark.h',
126 'debug/lap_timer.cc',
127 'debug/lap_timer.h',
128 'debug/layer_tree_debug_state.cc',
129 'debug/layer_tree_debug_state.h',
130 'debug/micro_benchmark.cc',
131 'debug/micro_benchmark.h',
132 'debug/micro_benchmark_controller.cc',
133 'debug/micro_benchmark_controller.h',
134 'debug/micro_benchmark_controller_impl.cc',
135 'debug/micro_benchmark_controller_impl.h',
136 'debug/micro_benchmark_impl.cc',
137 'debug/micro_benchmark_impl.h',
138 'debug/picture_debug_util.cc',
139 'debug/picture_debug_util.h',
140 'debug/rasterize_and_record_benchmark.cc',
141 'debug/rasterize_and_record_benchmark.h',
142 'debug/rasterize_and_record_benchmark_impl.cc',
143 'debug/rasterize_and_record_benchmark_impl.h',
144 'debug/rendering_stats.cc',
145 'debug/rendering_stats.h',
146 'debug/rendering_stats_instrumentation.cc',
147 'debug/rendering_stats_instrumentation.h',
148 'debug/ring_buffer.h',
149 'debug/traced_display_item_list.cc',
150 'debug/traced_display_item_list.h',
151 'debug/traced_value.cc',
152 'debug/traced_value.h',
153 'debug/unittest_only_benchmark.cc',
154 'debug/unittest_only_benchmark.h',
155 'debug/unittest_only_benchmark_impl.cc',
156 'debug/unittest_only_benchmark_impl.h',
157 'input/input_handler.cc',
158 'input/input_handler.h',
159 'input/layer_selection_bound.cc',
160 'input/layer_selection_bound.h',
161 'input/page_scale_animation.cc',
162 'input/page_scale_animation.h',
163 'input/scroll_elasticity_helper.cc',
164 'input/scroll_elasticity_helper.h',
165 'input/scroll_state.cc',
166 'input/scroll_state.h',
167 'input/scroll_state_data.cc',
168 'input/scroll_state_data.h',
169 'input/scrollbar_animation_controller.cc',
170 'input/scrollbar_animation_controller.h',
171 'input/scrollbar_animation_controller_linear_fade.cc',
172 'input/scrollbar_animation_controller_linear_fade.h',
173 'input/scrollbar_animation_controller_thinning.cc',
174 'input/scrollbar_animation_controller_thinning.h',
175 'input/selection.h',
176 'input/top_controls_manager.cc',
177 'input/top_controls_manager.h',
178 'input/top_controls_manager_client.h',
179 'layers/append_quads_data.h',
180 'layers/content_layer_client.h',
181 'layers/draw_properties.cc',
182 'layers/draw_properties.h',
183 'layers/empty_content_layer_client.cc',
184 'layers/empty_content_layer_client.h',
185 'layers/heads_up_display_layer.cc',
186 'layers/heads_up_display_layer.h',
187 'layers/heads_up_display_layer_impl.cc',
188 'layers/heads_up_display_layer_impl.h',
189 'layers/layer.cc',
190 'layers/layer_client.h',
191 'layers/layer_collections.h',
192 'layers/layer.h',
193 'layers/layer_impl.cc',
194 'layers/layer_impl.h',
195 "layers/layer_impl_test_properties.cc",
196 "layers/layer_impl_test_properties.h",
197 'layers/layer_iterator.h',
198 'layers/layer_list_iterator.cc',
199 'layers/layer_list_iterator.h',
200 'layers/layer_position_constraint.cc',
201 'layers/layer_position_constraint.h',
202 'layers/layer_proto_converter.cc',
203 'layers/layer_proto_converter.h',
204 'layers/layer_utils.cc',
205 'layers/layer_utils.h',
206 'layers/nine_patch_layer.cc',
207 'layers/nine_patch_layer.h',
208 'layers/nine_patch_layer_impl.cc',
209 'layers/nine_patch_layer_impl.h',
210 'layers/paint_properties.h',
211 'layers/painted_scrollbar_layer.cc',
212 'layers/painted_scrollbar_layer.h',
213 'layers/painted_scrollbar_layer_impl.cc',
214 'layers/painted_scrollbar_layer_impl.h',
215 'layers/picture_image_layer.cc',
216 'layers/picture_image_layer.h',
217 'layers/picture_layer.cc',
218 'layers/picture_layer.h',
219 'layers/picture_layer_impl.cc',
220 'layers/picture_layer_impl.h',
221 'layers/render_pass_sink.h',
222 'layers/render_surface_impl.cc',
223 'layers/render_surface_impl.h',
224 'layers/scrollbar_layer_impl_base.cc',
225 'layers/scrollbar_layer_impl_base.h',
226 'layers/scrollbar_layer_interface.h',
227 'layers/solid_color_layer.cc',
228 'layers/solid_color_layer.h',
229 'layers/solid_color_layer_impl.cc',
230 'layers/solid_color_layer_impl.h',
231 'layers/solid_color_scrollbar_layer.cc',
232 'layers/solid_color_scrollbar_layer.h',
233 'layers/solid_color_scrollbar_layer_impl.cc',
234 'layers/solid_color_scrollbar_layer_impl.h',
235 'layers/surface_layer.cc',
236 'layers/surface_layer.h',
237 'layers/surface_layer_impl.cc',
238 'layers/surface_layer_impl.h',
239 'layers/texture_layer.cc',
240 'layers/texture_layer.h',
241 'layers/texture_layer_client.h',
242 'layers/texture_layer_impl.cc',
243 'layers/texture_layer_impl.h',
244 'layers/ui_resource_layer.cc',
245 'layers/ui_resource_layer.h',
246 'layers/ui_resource_layer_impl.cc',
247 'layers/ui_resource_layer_impl.h',
248 'layers/video_frame_provider.h',
249 'layers/video_frame_provider_client_impl.cc',
250 'layers/video_frame_provider_client_impl.h',
251 'layers/video_layer.cc',
252 'layers/video_layer.h',
253 'layers/video_layer_impl.cc',
254 'layers/video_layer_impl.h',
255 'layers/viewport.cc',
256 'layers/viewport.h',
257 'output/begin_frame_args.cc',
258 'output/begin_frame_args.h',
259 'output/bsp_tree.cc',
260 'output/bsp_tree.h',
261 'output/bsp_walk_action.cc',
262 'output/bsp_walk_action.h',
263 'output/buffer_to_texture_target_map.cc',
264 'output/buffer_to_texture_target_map.h',
265 'output/ca_layer_overlay.cc',
266 'output/ca_layer_overlay.h',
267 'output/compositor_frame.cc',
268 'output/compositor_frame.h',
269 'output/compositor_frame_metadata.cc',
270 'output/compositor_frame_metadata.h',
271 'output/context_provider.h',
272 'output/copy_output_request.cc',
273 'output/copy_output_request.h',
274 'output/copy_output_result.cc',
275 'output/copy_output_result.h',
276 'output/delegated_frame_data.cc',
277 'output/delegated_frame_data.h',
278 'output/delegating_renderer.cc',
279 'output/delegating_renderer.h',
280 'output/direct_renderer.cc',
281 'output/direct_renderer.h',
282 'output/dynamic_geometry_binding.cc',
283 'output/dynamic_geometry_binding.h',
284 'output/filter_operation.cc',
285 'output/filter_operation.h',
286 'output/filter_operations.cc',
287 'output/filter_operations.h',
288 'output/geometry_binding.cc',
289 'output/geometry_binding.h',
290 'output/gl_color_lut_cache.cc',
291 'output/gl_color_lut_cache.h',
292 'output/gl_frame_data.cc',
293 'output/gl_frame_data.h',
294 'output/gl_renderer.cc',
295 'output/gl_renderer.h',
296 'output/gl_renderer_draw_cache.cc',
297 'output/gl_renderer_draw_cache.h',
298 'output/latency_info_swap_promise.cc',
299 'output/latency_info_swap_promise.h',
300 'output/layer_quad.cc',
301 'output/layer_quad.h',
302 'output/managed_memory_policy.cc',
303 'output/managed_memory_policy.h',
304 'output/output_surface.cc',
305 'output/output_surface.h',
306 'output/output_surface_client.h',
307 'output/overlay_candidate.cc',
308 'output/overlay_candidate.h',
309 'output/overlay_candidate_validator.h',
310 'output/overlay_processor.cc',
311 'output/overlay_processor.h',
312 'output/overlay_strategy_fullscreen.cc',
313 'output/overlay_strategy_fullscreen.h',
314 'output/overlay_strategy_single_on_top.cc',
315 'output/overlay_strategy_single_on_top.h',
316 'output/overlay_strategy_underlay.cc',
317 'output/overlay_strategy_underlay.h',
318 'output/program_binding.cc',
319 'output/program_binding.h',
320 'output/render_surface_filters.cc',
321 'output/render_surface_filters.h',
322 'output/renderer.cc',
323 'output/renderer.h',
324 'output/renderer_capabilities.cc',
325 'output/renderer_capabilities.h',
326 'output/renderer_settings.cc',
327 'output/renderer_settings.h',
328 'output/shader.cc',
329 'output/shader.h',
330 'output/software_output_device.cc',
331 'output/software_output_device.h',
332 'output/software_renderer.cc',
333 'output/software_renderer.h',
334 'output/static_geometry_binding.cc',
335 'output/static_geometry_binding.h',
336 'output/swap_promise.h',
337 'output/texture_mailbox_deleter.cc',
338 'output/texture_mailbox_deleter.h',
339 'output/vulkan_context_provider.h',
340 'output/vulkan_in_process_context_provider.cc',
341 'output/vulkan_in_process_context_provider.h',
342 'playback/clip_display_item.cc',
343 'playback/clip_display_item.h',
344 'playback/clip_path_display_item.cc',
345 'playback/clip_path_display_item.h',
346 'playback/compositing_display_item.cc',
347 'playback/compositing_display_item.h',
348 'playback/decoded_draw_image.cc',
349 'playback/decoded_draw_image.h',
350 'playback/discardable_image_map.cc',
351 'playback/discardable_image_map.h',
352 'playback/display_item.cc',
353 'playback/display_item.h',
354 'playback/display_item_list.cc',
355 'playback/display_item_list.h',
356 'playback/display_item_list_settings.cc',
357 'playback/display_item_list_settings.h',
358 'playback/display_item_proto_factory.cc',
359 'playback/display_item_proto_factory.h',
360 'playback/draw_image.cc',
361 'playback/draw_image.h',
362 'playback/drawing_display_item.cc',
363 'playback/drawing_display_item.h',
364 'playback/filter_display_item.cc',
365 'playback/filter_display_item.h',
366 'playback/float_clip_display_item.cc',
367 'playback/float_clip_display_item.h',
368 'playback/image_hijack_canvas.cc',
369 'playback/image_hijack_canvas.h',
370 'playback/largest_display_item.cc',
371 'playback/largest_display_item.h',
372 'playback/raster_source.cc',
373 'playback/raster_source.h',
374 'playback/recording_source.cc',
375 'playback/recording_source.h',
376 'playback/skip_image_canvas.cc',
377 'playback/skip_image_canvas.h',
378 'playback/transform_display_item.cc',
379 'playback/transform_display_item.h',
380 'proto/base_conversions.cc',
381 'proto/base_conversions.h',
382 'proto/cc_conversions.cc',
383 'proto/cc_conversions.h',
384 'proto/gfx_conversions.cc',
385 'proto/gfx_conversions.h',
386 'proto/gpu_conversions.cc',
387 'proto/gpu_conversions.h',
388 'proto/skia_conversions.cc',
389 'proto/skia_conversions.h',
390 'proto/synced_property_conversions.cc',
391 'proto/synced_property_conversions.h',
392 'quads/content_draw_quad_base.cc',
393 'quads/content_draw_quad_base.h',
394 'quads/debug_border_draw_quad.cc',
395 'quads/debug_border_draw_quad.h',
396 'quads/draw_polygon.cc',
397 'quads/draw_polygon.h',
398 'quads/draw_quad.cc',
399 'quads/draw_quad.h',
400 'quads/largest_draw_quad.cc',
401 'quads/largest_draw_quad.h',
402 'quads/picture_draw_quad.cc',
403 'quads/picture_draw_quad.h',
404 'quads/render_pass.cc',
405 'quads/render_pass.h',
406 'quads/render_pass_draw_quad.cc',
407 'quads/render_pass_draw_quad.h',
408 'quads/render_pass_id.cc',
409 'quads/render_pass_id.h',
410 'quads/shared_quad_state.cc',
411 'quads/shared_quad_state.h',
412 'quads/solid_color_draw_quad.cc',
413 'quads/solid_color_draw_quad.h',
414 'quads/stream_video_draw_quad.cc',
415 'quads/stream_video_draw_quad.h',
416 'quads/surface_draw_quad.cc',
417 'quads/surface_draw_quad.h',
418 'quads/texture_draw_quad.cc',
419 'quads/texture_draw_quad.h',
420 'quads/tile_draw_quad.cc',
421 'quads/tile_draw_quad.h',
422 'quads/yuv_video_draw_quad.cc',
423 'quads/yuv_video_draw_quad.h',
424 'raster/bitmap_raster_buffer_provider.cc',
425 'raster/bitmap_raster_buffer_provider.h',
426 'raster/gpu_raster_buffer_provider.cc',
427 'raster/gpu_raster_buffer_provider.h',
428 'raster/one_copy_raster_buffer_provider.cc',
429 'raster/one_copy_raster_buffer_provider.h',
430 'raster/raster_buffer.cc',
431 'raster/raster_buffer.h',
432 'raster/raster_buffer_provider.cc',
433 'raster/raster_buffer_provider.h',
434 'raster/scoped_gpu_raster.cc',
435 'raster/scoped_gpu_raster.h',
436 'raster/single_thread_task_graph_runner.cc',
437 'raster/single_thread_task_graph_runner.h',
438 'raster/staging_buffer_pool.cc',
439 'raster/staging_buffer_pool.h',
440 'raster/synchronous_task_graph_runner.cc',
441 'raster/synchronous_task_graph_runner.h',
442 'raster/task.cc',
443 'raster/task.h',
444 'raster/task_category.h',
445 'raster/task_graph_runner.h',
446 'raster/task_graph_work_queue.cc',
447 'raster/task_graph_work_queue.h',
448 'raster/texture_compressor.cc',
449 'raster/texture_compressor.h',
450 'raster/texture_compressor_etc1.cc',
451 'raster/texture_compressor_etc1.h',
452 'raster/tile_task.cc',
453 'raster/tile_task.h',
454 'raster/zero_copy_raster_buffer_provider.cc',
455 'raster/zero_copy_raster_buffer_provider.h',
456 'resources/memory_history.cc',
457 'resources/memory_history.h',
458 'resources/platform_color.h',
459 'resources/release_callback.h',
460 'resources/resource.h',
461 'resources/resource_format.cc',
462 'resources/resource_format.h',
463 'resources/resource_format_utils.cc',
464 'resources/resource_format_utils.h',
465 'resources/resource_pool.cc',
466 'resources/resource_pool.h',
467 'resources/resource_provider.cc',
468 'resources/resource_provider.h',
469 'resources/resource_util.h',
470 'resources/returned_resource.h',
471 'resources/scoped_resource.cc',
472 'resources/scoped_resource.h',
473 'resources/scoped_ui_resource.cc',
474 'resources/scoped_ui_resource.h',
475 'resources/shared_bitmap.cc',
476 'resources/shared_bitmap.h',
477 'resources/shared_bitmap_manager.h',
478 'resources/single_release_callback.cc',
479 'resources/single_release_callback.h',
480 'resources/single_release_callback_impl.cc',
481 'resources/single_release_callback_impl.h',
482 'resources/texture_mailbox.cc',
483 'resources/texture_mailbox.h',
484 'resources/transferable_resource.cc',
485 'resources/transferable_resource.h',
486 'resources/ui_resource_bitmap.cc',
487 'resources/ui_resource_bitmap.h',
488 'resources/ui_resource_client.h',
489 'resources/ui_resource_request.cc',
490 'resources/ui_resource_request.h',
491 'resources/video_resource_updater.cc',
492 'resources/video_resource_updater.h',
493 'scheduler/begin_frame_source.cc',
494 'scheduler/begin_frame_source.h',
495 'scheduler/begin_frame_tracker.cc',
496 'scheduler/begin_frame_tracker.h',
497 'scheduler/commit_earlyout_reason.cc',
498 'scheduler/commit_earlyout_reason.h',
499 'scheduler/compositor_timing_history.cc',
500 'scheduler/compositor_timing_history.h',
501 'scheduler/delay_based_time_source.cc',
502 'scheduler/delay_based_time_source.h',
503 'scheduler/draw_result.h',
504 'scheduler/scheduler.cc',
505 'scheduler/scheduler.h',
506 'scheduler/scheduler_settings.cc',
507 'scheduler/scheduler_settings.h',
508 'scheduler/scheduler_state_machine.cc',
509 'scheduler/scheduler_state_machine.h',
510 'scheduler/video_frame_controller.h',
511 'tiles/eviction_tile_priority_queue.cc',
512 'tiles/eviction_tile_priority_queue.h',
513 'tiles/gpu_image_decode_controller.cc',
514 'tiles/gpu_image_decode_controller.h',
515 'tiles/image_decode_controller.h',
516 'tiles/mipmap_util.cc',
517 'tiles/mipmap_util.h',
518 'tiles/picture_layer_tiling.cc',
519 'tiles/picture_layer_tiling.h',
520 'tiles/picture_layer_tiling_set.cc',
521 'tiles/picture_layer_tiling_set.h',
522 'tiles/prioritized_tile.cc',
523 'tiles/prioritized_tile.h',
524 'tiles/raster_tile_priority_queue_all.cc',
525 'tiles/raster_tile_priority_queue_all.h',
526 'tiles/raster_tile_priority_queue.cc',
527 'tiles/raster_tile_priority_queue.h',
528 'tiles/raster_tile_priority_queue_required.cc',
529 'tiles/raster_tile_priority_queue_required.h',
530 'tiles/software_image_decode_controller.cc',
531 'tiles/software_image_decode_controller.h',
532 'tiles/tile.cc',
533 'tiles/tile_draw_info.cc',
534 'tiles/tile_draw_info.h',
535 'tiles/tile.h',
536 'tiles/tile_manager.cc',
537 'tiles/tile_manager.h',
538 'tiles/tile_priority.cc',
539 'tiles/tile_priority.h',
540 'tiles/tile_task_manager.cc',
541 'tiles/tile_task_manager.h',
542 'tiles/tiling_set_eviction_queue.cc',
543 'tiles/tiling_set_eviction_queue.h',
544 'tiles/tiling_set_raster_queue_all.cc',
545 'tiles/tiling_set_raster_queue_all.h',
546 'tiles/tiling_set_raster_queue_required.cc',
547 'tiles/tiling_set_raster_queue_required.h',
548 'trees/blocking_task_runner.cc',
549 'trees/blocking_task_runner.h',
550 'trees/channel_impl.h',
551 'trees/channel_main.h',
552 'trees/clip_node.cc',
553 'trees/clip_node.h',
554 'trees/compositor_mode.h',
555 'trees/damage_tracker.cc',
556 'trees/damage_tracker.h',
557 'trees/draw_property_utils.cc',
558 'trees/draw_property_utils.h',
559 'trees/effect_node.cc',
560 'trees/effect_node.h',
561 'trees/latency_info_swap_promise_monitor.cc',
562 'trees/latency_info_swap_promise_monitor.h',
563 'trees/layer_tree.cc',
564 'trees/layer_tree.h',
565 'trees/layer_tree_host.cc',
566 'trees/layer_tree_host.h',
567 'trees/layer_tree_host_client.h',
568 'trees/layer_tree_host_common.cc',
569 'trees/layer_tree_host_common.h',
570 'trees/layer_tree_host_impl.cc',
571 'trees/layer_tree_host_impl.h',
572 'trees/layer_tree_host_single_thread_client.h',
573 'trees/layer_tree_impl.cc',
574 'trees/layer_tree_impl.h',
575 'trees/layer_tree_settings.cc',
576 'trees/layer_tree_settings.h',
577 'trees/mutator_host_client.h',
578 'trees/occlusion.cc',
579 'trees/occlusion.h',
580 'trees/occlusion_tracker.cc',
581 'trees/occlusion_tracker.h',
582 'trees/property_tree.cc',
583 'trees/property_tree.h',
584 'trees/property_tree_builder.cc',
585 'trees/property_tree_builder.h',
586 'trees/proxy.h',
587 'trees/proxy_common.cc',
588 'trees/proxy_common.h',
589 'trees/proxy_impl.cc',
590 'trees/proxy_impl.h',
591 'trees/proxy_main.cc',
592 'trees/proxy_main.h',
593 'trees/remote_channel_impl.cc',
594 'trees/remote_channel_impl.h',
595 'trees/remote_channel_main.cc',
596 'trees/remote_channel_main.h',
597 'trees/remote_proto_channel.h',
598 'trees/scoped_abort_remaining_swap_promises.h',
599 'trees/scroll_node.cc',
600 'trees/scroll_node.h',
601 'trees/single_thread_proxy.cc',
602 'trees/single_thread_proxy.h',
603 'trees/swap_promise_monitor.cc',
604 'trees/swap_promise_monitor.h',
605 'trees/task_runner_provider.cc',
606 'trees/task_runner_provider.h',
607 'trees/threaded_channel.cc',
608 'trees/threaded_channel.h',
609 'trees/transform_node.cc',
610 'trees/transform_node.h',
611 'trees/tree_synchronizer.cc',
612 'trees/tree_synchronizer.h',
613 ],
614 'includes': [
615 '../build/android/increase_size_for_speed.gypi',
616 ],
617 'conditions': [
618 ['target_arch == "ia32" or target_arch == "x64"', {
619 'sources': [
620 'raster/texture_compressor_etc1_sse.cc',
621 'raster/texture_compressor_etc1_sse.h',
622 ],
623 }],
624 ],
625 },
626 {
627 # GN version: "//cc/proto"
628 'target_name': 'cc_proto',
629 'type': '<(component)',
630 'sources': [
631 'proto/begin_main_frame_and_commit_state.proto',
632 'proto/commit_earlyout_reason.proto',
633 'proto/compositor_message.proto',
634 'proto/compositor_message_to_impl.proto',
635 'proto/compositor_message_to_main.proto',
636 'proto/display_item.proto',
637 'proto/element_id.proto',
638 'proto/layer.proto',
639 'proto/layer_position_constraint.proto',
640 'proto/layer_tree_debug_state.proto',
641 'proto/layer_tree.proto',
642 'proto/layer_tree_host.proto',
643 'proto/layer_tree_settings.proto',
644 'proto/layer_selection_bound.proto',
645 'proto/managed_memory_policy.proto',
646 'proto/memory_allocation.proto',
647 'proto/point.proto',
648 'proto/point3f.proto',
649 'proto/pointf.proto',
650 'proto/property_tree.proto',
651 'proto/recording_source.proto',
652 'proto/rect.proto',
653 'proto/rectf.proto',
654 'proto/region.proto',
655 'proto/renderer_settings.proto',
656 'proto/scroll_offset.proto',
657 'proto/size.proto',
658 'proto/sizef.proto',
659 'proto/skregion.proto',
660 'proto/skrrect.proto',
661 'proto/skxfermode.proto',
662 'proto/synced_property.proto',
663 'proto/transform.proto',
664 'proto/vector2d.proto',
665 'proto/vector2df.proto',
666 ],
667 'defines': [
668 'CC_PROTO_IMPLEMENTATION=1',
669 ],
670 'variables': {
671 # Warn if clang creates exit destructors.
672 'enable_wexit_time_destructors': 1,
673 'proto_in_dir': 'proto',
674 'proto_out_dir': 'cc/proto',
675 'cc_generator_options': 'dllexport_decl=CC_PROTO_EXPORT:',
676 'cc_include': 'cc/proto/cc_proto_export.h',
677 },
678 'includes': [ '../build/protoc.gypi' ]
679 },
680 {
681 # GN version: //cc/surfaces
682 'target_name': 'cc_surfaces',
683 'type': '<(component)',
684 'dependencies': [
685 'cc',
686 '<(DEPTH)/base/base.gyp:base',
687 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
688 '<(DEPTH)/gpu/gpu.gyp:gpu',
689 '<(DEPTH)/skia/skia.gyp:skia',
690 '<(DEPTH)/ui/events/events.gyp:events_base',
691 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
692 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
693 ],
694 'defines': [
695 'CC_SURFACES_IMPLEMENTATION=1',
696 ],
697 'sources': [
698 # Note: file list duplicated in GN build.
699 'surfaces/display.cc',
700 'surfaces/display.h',
701 'surfaces/display_client.h',
702 'surfaces/display_scheduler.cc',
703 'surfaces/display_scheduler.h',
704 'surfaces/surface.cc',
705 'surfaces/surface.h',
706 'surfaces/surface_aggregator.cc',
707 'surfaces/surface_aggregator.h',
708 'surfaces/surface_display_output_surface.cc',
709 'surfaces/surface_display_output_surface.h',
710 'surfaces/surface_factory.cc',
711 'surfaces/surface_factory.h',
712 'surfaces/surface_factory_client.h',
713 'surfaces/surface_hittest.cc',
714 'surfaces/surface_hittest.h',
715 'surfaces/surface_id.h',
716 'surfaces/surface_id_allocator.cc',
717 'surfaces/surface_id_allocator.h',
718 'surfaces/surface_manager.cc',
719 'surfaces/surface_manager.h',
720 'surfaces/surface_resource_holder.cc',
721 'surfaces/surface_resource_holder.h',
722 'surfaces/surface_sequence.h',
723 'surfaces/surfaces_export.h',
724 ],
725 'includes': [
726 '../build/android/increase_size_for_speed.gypi',
727 ],
728 },
729 ],
730 }
OLDNEW
« no previous file with comments | « cc/blink/cc_blink_tests.gyp ('k') | cc/cc_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698