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