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': [ | 6 'include': [ |
7 '../native_client/build/untrusted.gypi', | 7 '../native_client/build/untrusted.gypi', |
8 ], | 8 ], |
9 'target_defaults': { | 9 'target_defaults': { |
10 'variables': { | 10 'variables': { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 ], | 45 ], |
46 'include_dirs': [ | 46 'include_dirs': [ |
47 '<(DEPTH)/third_party/wtl/include', | 47 '<(DEPTH)/third_party/wtl/include', |
48 ], | 48 ], |
49 },], | 49 },], |
50 ['OS=="linux"', { | 50 ['OS=="linux"', { |
51 'defines': [ | 51 'defines': [ |
52 '__STDC_LIMIT_MACROS=1', | 52 '__STDC_LIMIT_MACROS=1', |
53 ], | 53 ], |
54 'sources': [ | 54 'sources': [ |
55 'app/nacl_fork_delegate_linux.cc', | |
56 'app/nacl_fork_delegate_linux.h', | |
57 '../components/nacl/common/nacl_paths.cc', | 55 '../components/nacl/common/nacl_paths.cc', |
58 '../components/nacl/common/nacl_paths.h', | 56 '../components/nacl/common/nacl_paths.h', |
| 57 '../components/nacl/zygote/nacl_fork_delegate_linux.cc', |
| 58 '../components/nacl/zygote/nacl_fork_delegate_linux.h', |
59 ], | 59 ], |
60 },], | 60 },], |
61 ], | 61 ], |
62 }], | 62 }], |
63 ], | 63 ], |
64 }, | 64 }, |
65 'conditions': [ | 65 'conditions': [ |
66 ['disable_nacl!=1', { | 66 ['disable_nacl!=1', { |
67 'targets': [ | 67 'targets': [ |
68 { | 68 { |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 'target_name': 'nacl_win64', | 206 'target_name': 'nacl_win64', |
207 'type': 'none', | 207 'type': 'none', |
208 'sources': [], | 208 'sources': [], |
209 }, | 209 }, |
210 ], | 210 ], |
211 }], | 211 }], |
212 ], | 212 ], |
213 }], | 213 }], |
214 ], | 214 ], |
215 } | 215 } |
OLD | NEW |