| 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 # nacl_win64_target is for building the trusted Win64 NaCl broker. | 8 # nacl_win64_target is for building the trusted Win64 NaCl broker. |
| 9 'nacl_win64_target': 0, | 9 'nacl_win64_target': 0, |
| 10 }, | 10 }, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 }, | 26 }, |
| 27 'defines': [ | 27 'defines': [ |
| 28 'GLES2_IMPL_IMPLEMENTATION', | 28 'GLES2_IMPL_IMPLEMENTATION', |
| 29 ], | 29 ], |
| 30 'sources': [ | 30 'sources': [ |
| 31 '<@(gles2_implementation_source_files)', | 31 '<@(gles2_implementation_source_files)', |
| 32 ], | 32 ], |
| 33 'dependencies': [ | 33 'dependencies': [ |
| 34 '../native_client/tools.gyp:prep_toolchain', | 34 '../native_client/tools.gyp:prep_toolchain', |
| 35 '../base/base_untrusted.gyp:base_untrusted', | 35 '../base/base_untrusted.gyp:base_untrusted', |
| 36 '../testing/gmock.gyp:gmock', |
| 36 '../third_party/khronos/khronos.gyp:khronos_headers', | 37 '../third_party/khronos/khronos.gyp:khronos_headers', |
| 37 'command_buffer/command_buffer_untrusted.gyp:gles2_utils_untrusted', | 38 'command_buffer/command_buffer_untrusted.gyp:gles2_utils_untrusted', |
| 38 'gles2_cmd_helper_untrusted', | 39 'gles2_cmd_helper_untrusted', |
| 39 ], | 40 ], |
| 40 }, | 41 }, |
| 41 { | 42 { |
| 42 'target_name': 'command_buffer_common_untrusted', | 43 'target_name': 'command_buffer_common_untrusted', |
| 43 'type': 'none', | 44 'type': 'none', |
| 44 'variables': { | 45 'variables': { |
| 45 'nacl_untrusted_build': 1, | 46 'nacl_untrusted_build': 1, |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 'dependencies': [ | 108 'dependencies': [ |
| 108 '../native_client/tools.gyp:prep_toolchain', | 109 '../native_client/tools.gyp:prep_toolchain', |
| 109 '../base/base_untrusted.gyp:base_untrusted', | 110 '../base/base_untrusted.gyp:base_untrusted', |
| 110 'command_buffer_common_untrusted', | 111 'command_buffer_common_untrusted', |
| 111 ], | 112 ], |
| 112 }, | 113 }, |
| 113 ], | 114 ], |
| 114 }], | 115 }], |
| 115 ], | 116 ], |
| 116 } | 117 } |
| OLD | NEW |