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

Side by Side Diff: cc/cc.gyp

Issue 1871233002: Move LatencyInfo to ui/latency_info (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify ui/events OWNERS Created 4 years, 8 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/DEPS ('k') | cc/cc_tests.gyp » ('j') | ui/events/events.gyp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « cc/DEPS ('k') | cc/cc_tests.gyp » ('j') | ui/events/events.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698