| 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': [ |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 'include_dirs': [ | 132 'include_dirs': [ |
| 133 '../third_party/khronos', | 133 '../third_party/khronos', |
| 134 ], | 134 ], |
| 135 }], | 135 }], |
| 136 ['OS in ("win", "android") or (OS == "linux" and use_x11 == 1)', { | 136 ['OS in ("win", "android") or (OS == "linux" and use_x11 == 1)', { |
| 137 'sources': [ | 137 'sources': [ |
| 138 'command_buffer/service/async_pixel_transfer_manager_egl.cc', | 138 'command_buffer/service/async_pixel_transfer_manager_egl.cc', |
| 139 'command_buffer/service/async_pixel_transfer_manager_egl.h', | 139 'command_buffer/service/async_pixel_transfer_manager_egl.h', |
| 140 ], | 140 ], |
| 141 }], | 141 }], |
| 142 ['OS=="android"', { | |
| 143 'configurations': { | |
| 144 'Release': { | |
| 145 'cflags': ['-O2'] | |
| 146 } | |
| 147 } | |
| 148 }] | |
| 149 ], | 142 ], |
| 150 } | 143 } |
| OLD | NEW |