| 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 'include_dirs': [ | 6 'include_dirs': [ |
| 7 '..', | 7 '..', |
| 8 ], | 8 ], |
| 9 'all_dependent_settings': { | 9 'all_dependent_settings': { |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| 11 '..', | 11 '..', |
| 12 ], | 12 ], |
| 13 }, | 13 }, |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '../base/base.gyp:base', | 15 '../base/base.gyp:base', |
| 16 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann
otations', | 16 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_ann
otations', |
| 17 '../crypto/crypto.gyp:crypto', | 17 '../crypto/crypto.gyp:crypto', |
| 18 '../ui/gfx/gfx.gyp:gfx', | 18 '../ui/gfx/gfx.gyp:gfx', |
| 19 '../ui/gl/gl.gyp:gl', | 19 '../ui/gl/gl.gyp:gl', |
| 20 '../ui/ui.gyp:ui', | 20 '../ui/ui.gyp:ui', |
| 21 '../third_party/angle_dx11/src/build_angle.gyp:translator_glsl', | |
| 22 '../third_party/khronos/khronos.gyp:khronos_headers', | 21 '../third_party/khronos/khronos.gyp:khronos_headers', |
| 23 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 22 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 24 '../third_party/smhasher/smhasher.gyp:cityhash', | 23 '../third_party/smhasher/smhasher.gyp:cityhash', |
| 25 '../third_party/re2/re2.gyp:re2', | 24 '../third_party/re2/re2.gyp:re2', |
| 26 ], | 25 ], |
| 27 'sources': [ | 26 'sources': [ |
| 28 'command_buffer/service/async_pixel_transfer_delegate.cc', | 27 'command_buffer/service/async_pixel_transfer_delegate.cc', |
| 29 'command_buffer/service/async_pixel_transfer_delegate.h', | 28 'command_buffer/service/async_pixel_transfer_delegate.h', |
| 30 'command_buffer/service/async_pixel_transfer_manager_android.cc', | 29 'command_buffer/service/async_pixel_transfer_manager_android.cc', |
| 31 'command_buffer/service/async_pixel_transfer_manager_idle.cc', | 30 'command_buffer/service/async_pixel_transfer_manager_idle.cc', |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 ['toolkit_uses_gtk == 1', { | 133 ['toolkit_uses_gtk == 1', { |
| 135 'dependencies': [ | 134 'dependencies': [ |
| 136 '../build/linux/system.gyp:gtk', | 135 '../build/linux/system.gyp:gtk', |
| 137 ], | 136 ], |
| 138 }], | 137 }], |
| 139 ['ui_compositor_image_transport==1', { | 138 ['ui_compositor_image_transport==1', { |
| 140 'include_dirs': [ | 139 'include_dirs': [ |
| 141 '../third_party/khronos', | 140 '../third_party/khronos', |
| 142 ], | 141 ], |
| 143 }], | 142 }], |
| 143 ['use_angle_translator==1', { |
| 144 'dependencies': [ |
| 145 '../third_party/angle_dx11/src/build_angle.gyp:translator', |
| 146 ], |
| 147 }, { |
| 148 'dependencies': [ |
| 149 '../third_party/angle_dx11/src/build_angle.gyp:translator_glsl', |
| 150 ], |
| 151 }], |
| 144 ['OS in ("win", "android") or (OS == "linux" and use_x11 == 1)', { | 152 ['OS in ("win", "android") or (OS == "linux" and use_x11 == 1)', { |
| 145 'sources': [ | 153 'sources': [ |
| 146 'command_buffer/service/async_pixel_transfer_manager_egl.cc', | 154 'command_buffer/service/async_pixel_transfer_manager_egl.cc', |
| 147 'command_buffer/service/async_pixel_transfer_manager_egl.h', | 155 'command_buffer/service/async_pixel_transfer_manager_egl.h', |
| 148 ], | 156 ], |
| 149 }] | 157 }] |
| 150 ], | 158 ], |
| 151 } | 159 } |
| OLD | NEW |