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

Side by Side Diff: components/display_compositor.gypi

Issue 2306443002: Remove GYP files from components. (Closed)
Patch Set: Remove compiled resources Created 4 years, 3 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 | « components/devtools_http_handler.gypi ('k') | components/dom_distiller.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 # GN version: //components/display_compositor:display_compositor
9 'target_name': 'display_compositor',
10 'type': '<(component)',
11 'dependencies': [
12 '../base/base.gyp:base',
13 '../cc/cc.gyp:cc',
14 '../gpu/gpu.gyp:command_buffer_client',
15 '../gpu/gpu.gyp:command_buffer_common',
16 '../skia/skia.gyp:skia',
17 '../third_party/khronos/khronos.gyp:khronos_headers',
18 '../ui/gfx/gfx.gyp:gfx',
19 '../ui/gfx/gfx.gyp:gfx_geometry',
20 '../ui/gl/gl.gyp:gl',
21 ],
22
23 'defines': [
24 'DISPLAY_COMPOSITOR_IMPLEMENTATION',
25 ],
26
27 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
28 'msvs_disabled_warnings': [4267, ],
29
30 'include_dirs': [
31 '..',
32 ],
33
34 'sources': [
35 'display_compositor/buffer_queue.cc',
36 'display_compositor/buffer_queue.h',
37 'display_compositor/compositor_overlay_candidate_validator.h',
38 'display_compositor/compositor_overlay_candidate_validator_android.cc',
39 'display_compositor/compositor_overlay_candidate_validator_android.h',
40 'display_compositor/compositor_overlay_candidate_validator_mac.h',
41 'display_compositor/compositor_overlay_candidate_validator_mac.mm',
42 'display_compositor/compositor_overlay_candidate_validator_ozone.cc',
43 'display_compositor/compositor_overlay_candidate_validator_ozone.h',
44 'display_compositor/display_compositor_export.h',
45 'display_compositor/gl_helper.cc',
46 'display_compositor/gl_helper.h',
47 'display_compositor/gl_helper_readback_support.cc',
48 'display_compositor/gl_helper_readback_support.h',
49 'display_compositor/gl_helper_scaling.cc',
50 'display_compositor/gl_helper_scaling.h',
51 ],
52 'conditions': [
53 ['use_ozone==1', {
54 'dependencies': [
55 '../ui/ozone/ozone.gyp:ozone_base',
56 ],
57 }],
58 ],
59 },
60 {
61 # GN version: //components/display_compositor:display_compositor_gl_tests
62 'target_name': 'display_compositor_gl_tests',
63 'type': '<(gtest_target_type)',
64 'dependencies': [
65 'display_compositor',
66 '../base/base.gyp:base',
67 '../base/base.gyp:test_support_base',
68 '../cc/cc_tests.gyp:cc_test_support',
69 '../gpu/gpu.gyp:command_buffer_client',
70 '../media/media.gyp:media',
71 '../skia/skia.gyp:skia',
72 '../testing/gmock.gyp:gmock',
73 '../testing/gtest.gyp:gtest',
74 '../ui/gl/gl.gyp:gl_test_support',
75 ],
76
77 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
78 'msvs_disabled_warnings': [4267, ],
79
80 'sources': [
81 "display_compositor/display_compositor_test_suite.cc",
82 "display_compositor/display_compositor_test_suite.h",
83 "display_compositor/gl_helper_unittest.cc",
84 "display_compositor/run_all_unittests.cc",
85 "display_compositor/yuv_readback_unittest.cc",
86 ]
87 },
88 {
89 # GN version: //components/display_compositor:display_compositor_benchmark
90 'target_name': 'display_compositor_benchmark',
91 'type': '<(gtest_target_type)',
92 'dependencies': [
93 'display_compositor',
94 '../base/base.gyp:base',
95 '../base/base.gyp:test_support_base',
96 '../cc/cc_tests.gyp:cc_test_support',
97 '../gpu/gpu.gyp:command_buffer_client',
98 '../media/media.gyp:media',
99 '../skia/skia.gyp:skia',
100 '../testing/gmock.gyp:gmock',
101 '../testing/gtest.gyp:gtest',
102 '../ui/gl/gl.gyp:gl_test_support',
103 ],
104
105 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
106 'msvs_disabled_warnings': [4267, ],
107
108 'sources': [
109 "display_compositor/display_compositor_test_suite.cc",
110 "display_compositor/display_compositor_test_suite.h",
111 "display_compositor/gl_helper_benchmark.cc",
112 "display_compositor/run_all_unittests.cc",
113 ]
114 },
115 ]
116 }
OLDNEW
« no previous file with comments | « components/devtools_http_handler.gypi ('k') | components/dom_distiller.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698