OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 9 'target_defaults': { |
10 'variables': { | 10 'variables': { |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 ], | 148 ], |
149 }, | 149 }, |
150 ], | 150 ], |
151 }], | 151 }], |
152 [ 'OS=="linux" and selinux==0', { | 152 [ 'OS=="linux" and selinux==0', { |
153 'targets': [ | 153 'targets': [ |
154 { | 154 { |
155 'target_name': 'chrome_sandbox', | 155 'target_name': 'chrome_sandbox', |
156 'type': 'executable', | 156 'type': 'executable', |
157 'sources': [ | 157 'sources': [ |
| 158 'linux/suid/init_process.c', |
| 159 'linux/suid/init_process.h', |
158 'linux/suid/linux_util.c', | 160 'linux/suid/linux_util.c', |
159 'linux/suid/linux_util.h', | 161 'linux/suid/linux_util.h', |
160 'linux/suid/process_util.h', | 162 'linux/suid/process_util.h', |
161 'linux/suid/process_util_linux.c', | 163 'linux/suid/process_util_linux.c', |
162 'linux/suid/sandbox.c', | 164 'linux/suid/sandbox.c', |
163 ], | 165 ], |
164 'cflags': [ | 166 'cflags': [ |
165 # For ULLONG_MAX | 167 # For ULLONG_MAX |
166 '-std=gnu99', | 168 '-std=gnu99', |
167 ], | 169 ], |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 'POCDLL_EXPORTS', | 374 'POCDLL_EXPORTS', |
373 ], | 375 ], |
374 'include_dirs': [ | 376 'include_dirs': [ |
375 '..', | 377 '..', |
376 ], | 378 ], |
377 }, | 379 }, |
378 ], | 380 ], |
379 }], | 381 }], |
380 ], | 382 ], |
381 } | 383 } |
OLD | NEW |