| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'dependencies': [ | |
| 7 '../base/base.gyp:base', | |
| 8 '../gpu/gpu.gyp:command_buffer_traits', | |
| 9 '../gpu/gpu.gyp:gpu', | |
| 10 '../gpu/gpu.gyp:gpu_ipc_service', | |
| 11 '../media/gpu/ipc/media_ipc.gyp:media_gpu_ipc_service', | |
| 12 '../media/media.gyp:media_gpu', | |
| 13 '../skia/skia.gyp:skia', | |
| 14 '../ui/gl/gl.gyp:gl', | |
| 15 '../ui/gl/init/gl_init.gyp:gl_init', | |
| 16 'content_common_mojo_bindings.gyp:content_common_mojo_bindings', | |
| 17 ], | |
| 18 'sources': [ | |
| 19 'gpu/gpu_child_thread.cc', | |
| 20 'gpu/gpu_child_thread.h', | |
| 21 'gpu/gpu_main.cc', | |
| 22 'gpu/gpu_process.cc', | |
| 23 'gpu/gpu_process.h', | |
| 24 'gpu/gpu_service_factory.cc', | |
| 25 'gpu/gpu_service_factory.h', | |
| 26 'gpu/in_process_gpu_thread.cc', | |
| 27 'gpu/in_process_gpu_thread.h', | |
| 28 'public/gpu/content_gpu_client.cc', | |
| 29 'public/gpu/content_gpu_client.h', | |
| 30 ], | |
| 31 'include_dirs': [ | |
| 32 '..', | |
| 33 ], | |
| 34 'conditions': [ | |
| 35 ['OS=="win"', { | |
| 36 'include_dirs': [ | |
| 37 '<(DEPTH)/third_party/khronos', | |
| 38 # ANGLE libs picked up from ui/gl | |
| 39 '<(angle_path)/src', | |
| 40 '<(DEPTH)/third_party/wtl/include', | |
| 41 ], | |
| 42 'link_settings': { | |
| 43 'libraries': [ | |
| 44 '-lsetupapi.lib', | |
| 45 ], | |
| 46 }, | |
| 47 }], | |
| 48 ['target_arch!="arm" and chromeos == 1', { | |
| 49 'include_dirs': [ | |
| 50 '<(DEPTH)/third_party/libva', | |
| 51 ], | |
| 52 }], | |
| 53 ['OS=="android"', { | |
| 54 'dependencies': [ | |
| 55 '<(DEPTH)/media/media.gyp:player_android', | |
| 56 ], | |
| 57 }], | |
| 58 ], | |
| 59 } | |
| OLD | NEW |