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 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
660 { | 660 { |
661 # GN version: //cc/surfaces | 661 # GN version: //cc/surfaces |
662 'target_name': 'cc_surfaces', | 662 'target_name': 'cc_surfaces', |
663 'type': '<(component)', | 663 'type': '<(component)', |
664 'dependencies': [ | 664 'dependencies': [ |
665 'cc', | 665 'cc', |
666 '<(DEPTH)/base/base.gyp:base', | 666 '<(DEPTH)/base/base.gyp:base', |
667 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 667 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
668 '<(DEPTH)/gpu/gpu.gyp:gpu', | 668 '<(DEPTH)/gpu/gpu.gyp:gpu', |
669 '<(DEPTH)/skia/skia.gyp:skia', | 669 '<(DEPTH)/skia/skia.gyp:skia', |
| 670 '<(DEPTH)/ui/events/events.gyp:events_base', |
670 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 671 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
671 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | 672 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', |
672 "<(DEPTH)/ui/latency_info/latency_info.gyp:latency_info", | |
673 ], | 673 ], |
674 'defines': [ | 674 'defines': [ |
675 'CC_SURFACES_IMPLEMENTATION=1', | 675 'CC_SURFACES_IMPLEMENTATION=1', |
676 ], | 676 ], |
677 'sources': [ | 677 'sources': [ |
678 # Note: file list duplicated in GN build. | 678 # Note: file list duplicated in GN build. |
679 'surfaces/display.cc', | 679 'surfaces/display.cc', |
680 'surfaces/display.h', | 680 'surfaces/display.h', |
681 'surfaces/display_client.h', | 681 'surfaces/display_client.h', |
682 'surfaces/display_scheduler.cc', | 682 'surfaces/display_scheduler.cc', |
(...skipping 19 matching lines...) Expand all Loading... |
702 'surfaces/surface_resource_holder.cc', | 702 'surfaces/surface_resource_holder.cc', |
703 'surfaces/surface_resource_holder.h', | 703 'surfaces/surface_resource_holder.h', |
704 'surfaces/surfaces_export.h', | 704 'surfaces/surfaces_export.h', |
705 ], | 705 ], |
706 'includes': [ | 706 'includes': [ |
707 '../build/android/increase_size_for_speed.gypi', | 707 '../build/android/increase_size_for_speed.gypi', |
708 ], | 708 ], |
709 }, | 709 }, |
710 ], | 710 ], |
711 } | 711 } |
OLD | NEW |