| OLD | NEW |
| 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 'dependencies': [ | 6 'dependencies': [ |
| 7 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
| 8 '../gpu/gpu.gyp:command_buffer_traits', | 8 '../gpu/gpu.gyp:command_buffer_traits', |
| 9 '../gpu/gpu.gyp:gpu', | 9 '../gpu/gpu.gyp:gpu', |
| 10 '../gpu/gpu.gyp:gpu_ipc_service', | 10 '../gpu/gpu.gyp:gpu_ipc_service', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 'gpu/gpu_process.cc', | 22 'gpu/gpu_process.cc', |
| 23 'gpu/gpu_process.h', | 23 'gpu/gpu_process.h', |
| 24 'gpu/gpu_process_control_impl.cc', | 24 'gpu/gpu_process_control_impl.cc', |
| 25 'gpu/gpu_process_control_impl.h', | 25 'gpu/gpu_process_control_impl.h', |
| 26 'gpu/gpu_watchdog_thread.cc', | 26 'gpu/gpu_watchdog_thread.cc', |
| 27 'gpu/gpu_watchdog_thread.h', | 27 'gpu/gpu_watchdog_thread.h', |
| 28 'gpu/in_process_gpu_thread.cc', | 28 'gpu/in_process_gpu_thread.cc', |
| 29 'gpu/in_process_gpu_thread.h', | 29 'gpu/in_process_gpu_thread.h', |
| 30 'public/gpu/content_gpu_client.cc', | 30 'public/gpu/content_gpu_client.cc', |
| 31 'public/gpu/content_gpu_client.h', | 31 'public/gpu/content_gpu_client.h', |
| 32 'public/gpu/gpu_video_decode_accelerator_factory.cc', | |
| 33 'public/gpu/gpu_video_decode_accelerator_factory.h', | |
| 34 ], | 32 ], |
| 35 'include_dirs': [ | 33 'include_dirs': [ |
| 36 '..', | 34 '..', |
| 37 ], | 35 ], |
| 38 'conditions': [ | 36 'conditions': [ |
| 39 ['OS=="win"', { | 37 ['OS=="win"', { |
| 40 'include_dirs': [ | 38 'include_dirs': [ |
| 41 '<(DEPTH)/third_party/khronos', | 39 '<(DEPTH)/third_party/khronos', |
| 42 # ANGLE libs picked up from ui/gl | 40 # ANGLE libs picked up from ui/gl |
| 43 '<(angle_path)/src', | 41 '<(angle_path)/src', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 54 '<(DEPTH)/third_party/libva', | 52 '<(DEPTH)/third_party/libva', |
| 55 ], | 53 ], |
| 56 }], | 54 }], |
| 57 ['OS=="android"', { | 55 ['OS=="android"', { |
| 58 'dependencies': [ | 56 'dependencies': [ |
| 59 '<(DEPTH)/media/media.gyp:player_android', | 57 '<(DEPTH)/media/media.gyp:player_android', |
| 60 ], | 58 ], |
| 61 }], | 59 }], |
| 62 ], | 60 ], |
| 63 } | 61 } |
| OLD | NEW |