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 22 matching lines...) Expand all Loading... |
33 'nacl/loader/nacl_main.cc', | 33 'nacl/loader/nacl_main.cc', |
34 'nacl/loader/nacl_main_platform_delegate.h', | 34 'nacl/loader/nacl_main_platform_delegate.h', |
35 'nacl/loader/nacl_main_platform_delegate_linux.cc', | 35 'nacl/loader/nacl_main_platform_delegate_linux.cc', |
36 'nacl/loader/nacl_main_platform_delegate_mac.mm', | 36 'nacl/loader/nacl_main_platform_delegate_mac.mm', |
37 'nacl/loader/nacl_main_platform_delegate_win.cc', | 37 'nacl/loader/nacl_main_platform_delegate_win.cc', |
38 'nacl/loader/nacl_listener.cc', | 38 'nacl/loader/nacl_listener.cc', |
39 'nacl/loader/nacl_listener.h', | 39 'nacl/loader/nacl_listener.h', |
40 'nacl/loader/nacl_validation_db.h', | 40 'nacl/loader/nacl_validation_db.h', |
41 'nacl/loader/nacl_validation_query.cc', | 41 'nacl/loader/nacl_validation_query.cc', |
42 'nacl/loader/nacl_validation_query.h', | 42 'nacl/loader/nacl_validation_query.h', |
| 43 'nacl/common/test_nacl_browser_delegate.cc', |
43 ], | 44 ], |
44 # TODO(gregoryd): consider switching NaCl to use Chrome OS defines | 45 # TODO(gregoryd): consider switching NaCl to use Chrome OS defines |
45 'conditions': [ | 46 'conditions': [ |
46 ['OS=="win"', { | 47 ['OS=="win"', { |
47 'defines': [ | 48 'defines': [ |
48 '__STDC_LIMIT_MACROS=1', | 49 '__STDC_LIMIT_MACROS=1', |
49 ], | 50 ], |
50 'include_dirs': [ | 51 'include_dirs': [ |
51 '<(DEPTH)/third_party/wtl/include', | 52 '<(DEPTH)/third_party/wtl/include', |
52 ], | 53 ], |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 'target_name': 'nacl_win64', | 174 'target_name': 'nacl_win64', |
174 'type': 'none', | 175 'type': 'none', |
175 'sources': [], | 176 'sources': [], |
176 }, | 177 }, |
177 ], | 178 ], |
178 }], | 179 }], |
179 ], | 180 ], |
180 }], | 181 }], |
181 ], | 182 ], |
182 } | 183 } |
OLD | NEW |