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

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

Issue 27764002: Enable Ozone software implementation in GYP (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Refactored GYP dridrm dependency Created 7 years, 2 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
« no previous file with comments | « build/linux/system.gyp ('k') | ui/gfx/ozone/surface_factory_ozone.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 {
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 'insets.h', 128 'insets.h',
129 'insets_base.h', 129 'insets_base.h',
130 'insets_f.cc', 130 'insets_f.cc',
131 'insets_f.h', 131 'insets_f.h',
132 'interpolated_transform.cc', 132 'interpolated_transform.cc',
133 'interpolated_transform.h', 133 'interpolated_transform.h',
134 'mac/scoped_ns_disable_screen_updates.h', 134 'mac/scoped_ns_disable_screen_updates.h',
135 'matrix3_f.cc', 135 'matrix3_f.cc',
136 'matrix3_f.h', 136 'matrix3_f.h',
137 'native_widget_types.h', 137 'native_widget_types.h',
138 'ozone/impl/drm_skbitmap_ozone.cc',
139 'ozone/impl/drm_skbitmap_ozone.h',
140 'ozone/impl/drm_wrapper_ozone.cc',
141 'ozone/impl/drm_wrapper_ozone.h',
142 'ozone/impl/hardware_display_controller_ozone.cc',
143 'ozone/impl/hardware_display_controller_ozone.h',
144 'ozone/impl/software_surface_factory_ozone.cc',
145 'ozone/impl/software_surface_factory_ozone.h',
146 'ozone/impl/software_surface_ozone.cc',
147 'ozone/impl/software_surface_ozone.h',
138 'ozone/surface_factory_ozone.cc', 148 'ozone/surface_factory_ozone.cc',
139 'ozone/surface_factory_ozone.h', 149 'ozone/surface_factory_ozone.h',
140 'pango_util.cc', 150 'pango_util.cc',
141 'pango_util.h', 151 'pango_util.h',
142 'path.cc', 152 'path.cc',
143 'path.h', 153 'path.h',
144 'path_aura.cc', 154 'path_aura.cc',
145 'path_gtk.cc', 155 'path_gtk.cc',
146 'path_win.cc', 156 'path_win.cc',
147 'path_win.h', 157 'path_win.h',
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 'render_text.cc', 360 'render_text.cc',
351 'render_text.h', 361 'render_text.h',
352 'text_utils_skia.cc', 362 'text_utils_skia.cc',
353 ], 363 ],
354 }], 364 }],
355 ['use_pango==1', { 365 ['use_pango==1', {
356 'dependencies': [ 366 'dependencies': [
357 '<(DEPTH)/build/linux/system.gyp:pangocairo', 367 '<(DEPTH)/build/linux/system.gyp:pangocairo',
358 ], 368 ],
359 }], 369 }],
370 ['use_ozone==1', {
371 'dependencies': [
372 '<(DEPTH)/build/linux/system.gyp:dridrm',
373 ],
374 }],
360 ], 375 ],
361 'target_conditions': [ 376 'target_conditions': [
362 # Need 'target_conditions' to override default filename_rules to include 377 # Need 'target_conditions' to override default filename_rules to include
363 # the file on iOS. 378 # the file on iOS.
364 ['OS == "ios"', { 379 ['OS == "ios"', {
365 'sources/': [ 380 'sources/': [
366 ['include', '^scoped_cg_context_save_gstate_mac\\.h$'], 381 ['include', '^scoped_cg_context_save_gstate_mac\\.h$'],
367 ], 382 ],
368 }], 383 }],
369 ], 384 ],
(...skipping 16 matching lines...) Expand all
386 ], 401 ],
387 'variables': { 402 'variables': {
388 'jni_gen_package': 'ui/gfx', 403 'jni_gen_package': 'ui/gfx',
389 }, 404 },
390 'includes': [ '../../build/jni_generator.gypi' ], 405 'includes': [ '../../build/jni_generator.gypi' ],
391 }, 406 },
392 ], 407 ],
393 }], 408 }],
394 ], 409 ],
395 } 410 }
OLDNEW
« no previous file with comments | « build/linux/system.gyp ('k') | ui/gfx/ozone/surface_factory_ozone.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698