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 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 # GN version: //cc | 11 # GN version: //cc |
12 'target_name': 'cc', | 12 'target_name': 'cc', |
13 'type': '<(component)', | 13 'type': '<(component)', |
14 'dependencies': [ | 14 'dependencies': [ |
15 'cc_proto', | 15 'cc_proto', |
16 '<(DEPTH)/base/base.gyp:base', | 16 '<(DEPTH)/base/base.gyp:base', |
17 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 17 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
18 '<(DEPTH)/gpu/gpu.gyp:gpu', | 18 '<(DEPTH)/gpu/gpu.gyp:gpu', |
19 '<(DEPTH)/media/media.gyp:media', | 19 '<(DEPTH)/media/media.gyp:media', |
20 '<(DEPTH)/skia/skia.gyp:skia', | 20 '<(DEPTH)/skia/skia.gyp:skia', |
21 '<(DEPTH)/third_party/protobuf/protobuf.gyp:protobuf_lite', | 21 '<(DEPTH)/third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 22 '<(DEPTH)/ui/events/events.gyp:events_base', |
22 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 23 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
23 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 24 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
24 '<(DEPTH)/ui/gl/gl.gyp:gl', | 25 '<(DEPTH)/ui/gl/gl.gyp:gl', |
25 "<(DEPTH)/ui/latency_info/latency_info.gyp:latency_info", | |
26 ], | 26 ], |
27 'variables': { | 27 'variables': { |
28 'optimize': 'max', | 28 'optimize': 'max', |
29 }, | 29 }, |
30 'export_dependent_settings': [ | 30 'export_dependent_settings': [ |
31 '<(DEPTH)/skia/skia.gyp:skia', | 31 '<(DEPTH)/skia/skia.gyp:skia', |
32 ], | 32 ], |
33 'defines': [ | 33 'defines': [ |
34 'CC_IMPLEMENTATION=1', | 34 'CC_IMPLEMENTATION=1', |
35 ], | 35 ], |
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
658 { | 658 { |
659 # GN version: //cc/surfaces | 659 # GN version: //cc/surfaces |
660 'target_name': 'cc_surfaces', | 660 'target_name': 'cc_surfaces', |
661 'type': '<(component)', | 661 'type': '<(component)', |
662 'dependencies': [ | 662 'dependencies': [ |
663 'cc', | 663 'cc', |
664 '<(DEPTH)/base/base.gyp:base', | 664 '<(DEPTH)/base/base.gyp:base', |
665 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 665 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
666 '<(DEPTH)/gpu/gpu.gyp:gpu', | 666 '<(DEPTH)/gpu/gpu.gyp:gpu', |
667 '<(DEPTH)/skia/skia.gyp:skia', | 667 '<(DEPTH)/skia/skia.gyp:skia', |
| 668 '<(DEPTH)/ui/events/events.gyp:events_base', |
668 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 669 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
669 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 670 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
670 "<(DEPTH)/ui/latency_info/latency_info.gyp:latency_info", | |
671 ], | 671 ], |
672 'defines': [ | 672 'defines': [ |
673 'CC_SURFACES_IMPLEMENTATION=1', | 673 'CC_SURFACES_IMPLEMENTATION=1', |
674 ], | 674 ], |
675 'sources': [ | 675 'sources': [ |
676 # Note: file list duplicated in GN build. | 676 # Note: file list duplicated in GN build. |
677 'surfaces/display.cc', | 677 'surfaces/display.cc', |
678 'surfaces/display.h', | 678 'surfaces/display.h', |
679 'surfaces/display_client.h', | 679 'surfaces/display_client.h', |
680 'surfaces/display_scheduler.cc', | 680 'surfaces/display_scheduler.cc', |
(...skipping 19 matching lines...) Expand all Loading... |
700 'surfaces/surface_resource_holder.cc', | 700 'surfaces/surface_resource_holder.cc', |
701 'surfaces/surface_resource_holder.h', | 701 'surfaces/surface_resource_holder.h', |
702 'surfaces/surfaces_export.h', | 702 'surfaces/surfaces_export.h', |
703 ], | 703 ], |
704 'includes': [ | 704 'includes': [ |
705 '../build/android/increase_size_for_speed.gypi', | 705 '../build/android/increase_size_for_speed.gypi', |
706 ], | 706 ], |
707 }, | 707 }, |
708 ], | 708 ], |
709 } | 709 } |
OLD | NEW |