| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../native_client/build/untrusted.gypi', | 10 '../native_client/build/untrusted.gypi', |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 }, | 100 }, |
| 101 }, | 101 }, |
| 102 { | 102 { |
| 103 'target_name': 'nacl_browser', | 103 'target_name': 'nacl_browser', |
| 104 'type': 'static_library', | 104 'type': 'static_library', |
| 105 'sources': [ | 105 'sources': [ |
| 106 'nacl/browser/nacl_browser.cc', | 106 'nacl/browser/nacl_browser.cc', |
| 107 'nacl/browser/nacl_browser.h', | 107 'nacl/browser/nacl_browser.h', |
| 108 'nacl/browser/nacl_validation_cache.cc', | 108 'nacl/browser/nacl_validation_cache.cc', |
| 109 'nacl/browser/nacl_validation_cache.h', | 109 'nacl/browser/nacl_validation_cache.h', |
| 110 'nacl/browser/pnacl_translation_cache.cc', |
| 111 'nacl/browser/pnacl_translation_cache.h', |
| 110 ], | 112 ], |
| 111 'include_dirs': [ | 113 'include_dirs': [ |
| 112 '..', | 114 '..', |
| 113 ], | 115 ], |
| 114 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 116 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 115 'msvs_disabled_warnings': [4267, ], | 117 'msvs_disabled_warnings': [4267, ], |
| 116 }, | 118 }, |
| 117 ], | 119 ], |
| 118 'conditions': [ | 120 'conditions': [ |
| 119 ['OS=="linux"', { | 121 ['OS=="linux"', { |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 'target_name': 'nacl_win64', | 234 'target_name': 'nacl_win64', |
| 233 'type': 'none', | 235 'type': 'none', |
| 234 'sources': [], | 236 'sources': [], |
| 235 }, | 237 }, |
| 236 ], | 238 ], |
| 237 }], | 239 }], |
| 238 ], | 240 ], |
| 239 }], | 241 }], |
| 240 ], | 242 ], |
| 241 } | 243 } |
| OLD | NEW |