OLD | NEW |
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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 'ozone/dri/dri_skbitmap.cc', | 230 'ozone/dri/dri_skbitmap.cc', |
231 'ozone/dri/dri_skbitmap.h', | 231 'ozone/dri/dri_skbitmap.h', |
232 'ozone/dri/dri_surface.cc', | 232 'ozone/dri/dri_surface.cc', |
233 'ozone/dri/dri_surface.h', | 233 'ozone/dri/dri_surface.h', |
234 'ozone/dri/dri_surface_factory.cc', | 234 'ozone/dri/dri_surface_factory.cc', |
235 'ozone/dri/dri_surface_factory.h', | 235 'ozone/dri/dri_surface_factory.h', |
236 'ozone/dri/dri_vsync_provider.cc', | 236 'ozone/dri/dri_vsync_provider.cc', |
237 'ozone/dri/dri_vsync_provider.h', | 237 'ozone/dri/dri_vsync_provider.h', |
238 'ozone/dri/dri_wrapper.cc', | 238 'ozone/dri/dri_wrapper.cc', |
239 'ozone/dri/dri_wrapper.h', | 239 'ozone/dri/dri_wrapper.h', |
| 240 'ozone/dri/gbm_surface.h', |
| 241 'ozone/dri/gbm_surface.cc', |
| 242 'ozone/dri/gbm_surface_factory.cc', |
| 243 'ozone/dri/gbm_surface_factory.h', |
240 'ozone/dri/hardware_display_controller.cc', | 244 'ozone/dri/hardware_display_controller.cc', |
241 'ozone/dri/hardware_display_controller.h', | 245 'ozone/dri/hardware_display_controller.h', |
| 246 'ozone/dri/scanout_surface.h', |
242 'ozone/impl/file_surface_factory.cc', | 247 'ozone/impl/file_surface_factory.cc', |
243 'ozone/impl/file_surface_factory.h', | 248 'ozone/impl/file_surface_factory.h', |
244 'ozone/surface_factory_ozone.cc', | 249 'ozone/surface_factory_ozone.cc', |
245 'ozone/surface_factory_ozone.h', | 250 'ozone/surface_factory_ozone.h', |
246 'pango_util.cc', | 251 'pango_util.cc', |
247 'pango_util.h', | 252 'pango_util.h', |
248 'path.cc', | 253 'path.cc', |
249 'path.h', | 254 'path.h', |
250 'path_aura.cc', | 255 'path_aura.cc', |
251 'path_gtk.cc', | 256 'path_gtk.cc', |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
445 'dependencies': [ | 450 'dependencies': [ |
446 '<(DEPTH)/build/linux/system.gyp:pangocairo', | 451 '<(DEPTH)/build/linux/system.gyp:pangocairo', |
447 ], | 452 ], |
448 'sources!': [ | 453 'sources!': [ |
449 'platform_font_ozone.cc', | 454 'platform_font_ozone.cc', |
450 'render_text_ozone.cc', | 455 'render_text_ozone.cc', |
451 ], | 456 ], |
452 }], | 457 }], |
453 ['ozone_platform_dri==1', { | 458 ['ozone_platform_dri==1', { |
454 'dependencies': [ | 459 'dependencies': [ |
455 '<(DEPTH)/build/linux/system.gyp:dridrm', | 460 '<(DEPTH)/build/linux/system.gyp:dridrm', |
| 461 ], |
| 462 }], |
| 463 ['ozone_platform_gbm==1', { |
| 464 'dependencies': [ |
| 465 '<(DEPTH)/build/linux/system.gyp:dridrm', |
| 466 '<(DEPTH)/third_party/khronos/khronos.gyp:khronos_headers', |
| 467 '<(DEPTH)/third_party/mesa/mesa.gyp:mesa_gbm', |
456 ], | 468 ], |
457 }], | 469 }], |
458 ['desktop_linux==1 or chromeos==1', { | 470 ['desktop_linux==1 or chromeos==1', { |
459 'dependencies': [ | 471 'dependencies': [ |
460 # font_render_params_linux.cc uses fontconfig | 472 # font_render_params_linux.cc uses fontconfig |
461 '<(DEPTH)/build/linux/system.gyp:fontconfig', | 473 '<(DEPTH)/build/linux/system.gyp:fontconfig', |
462 ], | 474 ], |
463 }], | 475 }], |
464 ], | 476 ], |
465 'target_conditions': [ | 477 'target_conditions': [ |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
547 'variables': { | 559 'variables': { |
548 'jni_gen_package': 'ui/gfx', | 560 'jni_gen_package': 'ui/gfx', |
549 'jni_generator_ptr_type': 'long' | 561 'jni_generator_ptr_type': 'long' |
550 }, | 562 }, |
551 'includes': [ '../../build/jni_generator.gypi' ], | 563 'includes': [ '../../build/jni_generator.gypi' ], |
552 }, | 564 }, |
553 ], | 565 ], |
554 }], | 566 }], |
555 ], | 567 ], |
556 } | 568 } |
OLD | NEW |