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

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: 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
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', {
rjkroege 2013/10/18 14:54:05 it would be nicer if you make this block look like
dnicoara 2013/10/18 16:00:50 Done.
371 'conditions': [
372 ['sysroot!=""', {
373 'variables': {
374 'pkg-config': '../../build/linux/pkg-config-wrapper "<(sysroot)" "<(target_arch)"',
375 },
376 }, {
377 'variables': {
378 'pkg-config': 'pkg-config'
379 },
380 }],
381 ],
382 'cflags': [
383 '<!@(<(pkg-config) --cflags libdrm)',
384 ],
385 'direct_dependent_settings': {
386 'cflags': [
387 '<!@(<(pkg-config) --cflags libdrm)',
388 ],
389 },
390 'link_settings': {
391 'libraries': [
392 '<!@(<(pkg-config) --libs-only-l libdrm)',
393 ],
394 },
395 }],
360 ], 396 ],
361 'target_conditions': [ 397 'target_conditions': [
362 # Need 'target_conditions' to override default filename_rules to include 398 # Need 'target_conditions' to override default filename_rules to include
363 # the file on iOS. 399 # the file on iOS.
364 ['OS == "ios"', { 400 ['OS == "ios"', {
365 'sources/': [ 401 'sources/': [
366 ['include', '^scoped_cg_context_save_gstate_mac\\.h$'], 402 ['include', '^scoped_cg_context_save_gstate_mac\\.h$'],
367 ], 403 ],
368 }], 404 }],
369 ], 405 ],
(...skipping 16 matching lines...) Expand all
386 ], 422 ],
387 'variables': { 423 'variables': {
388 'jni_gen_package': 'ui/gfx', 424 'jni_gen_package': 'ui/gfx',
389 }, 425 },
390 'includes': [ '../../build/jni_generator.gypi' ], 426 'includes': [ '../../build/jni_generator.gypi' ],
391 }, 427 },
392 ], 428 ],
393 }], 429 }],
394 ], 430 ],
395 } 431 }
OLDNEW
« no previous file with comments | « no previous file | ui/gfx/ozone/surface_factory_ozone.cc » ('j') | ui/gfx/ozone/surface_factory_ozone.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698