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

Side by Side Diff: ui/surface/surface.gyp

Issue 13985039: Rationalize linux vs x11 in ui (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix try failures Created 7 years, 7 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 | Annotate | Revision Log
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 9
10 'target_defaults': { 10 'target_defaults': {
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 'io_surface_support_mac.h', 78 'io_surface_support_mac.h',
79 'surface_export.h', 79 'surface_export.h',
80 'surface_switches.h', 80 'surface_switches.h',
81 'surface_switches.cc', 81 'surface_switches.cc',
82 'transport_dib.h', 82 'transport_dib.h',
83 'transport_dib.cc', 83 'transport_dib.cc',
84 'transport_dib_posix.cc', 84 'transport_dib_posix.cc',
85 'transport_dib_sysvipc.cc', 85 'transport_dib_sysvipc.cc',
86 'transport_dib_win.cc', 86 'transport_dib_win.cc',
87 ], 87 ],
88 'conditions': [
89 ['use_x11 != 1 and OS != "mac"', {
90 'sources!': [
91 'transport_dib_sysvipc.cc',
92 ],
93 }],
94 ],
88 'defines': [ 95 'defines': [
89 'SURFACE_IMPLEMENTATION', 96 'SURFACE_IMPLEMENTATION',
90 ], 97 ],
91 }, 98 },
92 ], 99 ],
93 'conditions': [ 100 'conditions': [
94 ['OS == "win"', { 101 ['OS == "win"', {
95 'targets': [ 102 'targets': [
96 { 103 {
97 'target_name': 'surface_gpu_tests', 104 'target_name': 'surface_gpu_tests',
98 'type': '<(gtest_target_type)', 105 'type': '<(gtest_target_type)',
99 'dependencies': [ 106 'dependencies': [
100 '<(DEPTH)/base/base.gyp:base', 107 '<(DEPTH)/base/base.gyp:base',
101 '<(DEPTH)/base/base.gyp:run_all_unittests', 108 '<(DEPTH)/base/base.gyp:run_all_unittests',
102 '<(DEPTH)/media/media.gyp:yuv_convert', 109 '<(DEPTH)/media/media.gyp:yuv_convert',
103 '<(DEPTH)/skia/skia.gyp:skia', 110 '<(DEPTH)/skia/skia.gyp:skia',
104 '<(DEPTH)/testing/gtest.gyp:gtest', 111 '<(DEPTH)/testing/gtest.gyp:gtest',
105 '<(DEPTH)/ui/ui.gyp:ui', 112 '<(DEPTH)/ui/ui.gyp:ui',
106 'surface', 113 'surface',
107 ], 114 ],
108 'sources': [ 115 'sources': [
109 'accelerated_surface_transformer_win_unittest.cc', 116 'accelerated_surface_transformer_win_unittest.cc',
110 ], 117 ],
111 }, 118 },
112 ], 119 ],
113 }], 120 }],
114 ], 121 ],
115 } 122 }
OLDNEW
« ui/gl/gl.gyp ('K') | « ui/gl/gl_surface_x11.cc ('k') | ui/surface/transport_dib.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698