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 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
| 10 # base.gypi must be included before common_untrusted.gypi. |
| 11 # |
| 12 # TODO(sergeyu): Replace the target_defaults magic in base.gypi with a |
| 13 # sources variables lists. That way order of includes will not matter. |
| 14 'base.gypi', |
10 '../build/common_untrusted.gypi', | 15 '../build/common_untrusted.gypi', |
11 'base.gypi', | |
12 ], | 16 ], |
13 'conditions': [ | 17 'conditions': [ |
14 ['disable_nacl==0 and disable_nacl_untrusted==0', { | 18 ['disable_nacl==0 and disable_nacl_untrusted==0', { |
15 'targets': [ | 19 'targets': [ |
16 { | 20 { |
17 'target_name': 'base_nacl', | 21 'target_name': 'base_nacl', |
18 'type': 'none', | 22 'type': 'none', |
19 'variables': { | 23 'variables': { |
20 'base_target': 1, | 24 'base_target': 1, |
21 'nacl_untrusted_build': 1, | 25 'nacl_untrusted_build': 1, |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 ], | 114 ], |
111 'dependencies': [ | 115 'dependencies': [ |
112 '../native_client/tools.gyp:prep_toolchain', | 116 '../native_client/tools.gyp:prep_toolchain', |
113 '../third_party/libevent/libevent_nacl_nonsfi.gyp:event_nacl_nonsfi'
, | 117 '../third_party/libevent/libevent_nacl_nonsfi.gyp:event_nacl_nonsfi'
, |
114 ], | 118 ], |
115 }, | 119 }, |
116 ], | 120 ], |
117 }], | 121 }], |
118 ], | 122 ], |
119 } | 123 } |
OLD | NEW |