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