OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 'src/win_utils.h', | 119 'src/win_utils.h', |
120 'src/win2k_threadpool.cc', | 120 'src/win2k_threadpool.cc', |
121 'src/win2k_threadpool.h', | 121 'src/win2k_threadpool.h', |
122 'src/window.cc', | 122 'src/window.cc', |
123 'src/window.h', | 123 'src/window.h', |
124 ], | 124 ], |
125 }], | 125 }], |
126 ], | 126 ], |
127 }, | 127 }, |
128 'conditions': [ | 128 'conditions': [ |
| 129 [ 'OS=="freebsd" or OS=="openbsd"', { |
| 130 # GYP requires that each file have at least one target defined. |
| 131 'targets': [ |
| 132 { |
| 133 'target_name': 'sandbox', |
| 134 'type': 'settings', |
| 135 }, |
| 136 ], |
| 137 }], |
129 [ 'OS=="linux" and selinux==0', { | 138 [ 'OS=="linux" and selinux==0', { |
130 'targets': [ | 139 'targets': [ |
131 { | 140 { |
132 'target_name': 'chrome_sandbox', | 141 'target_name': 'chrome_sandbox', |
133 'type': 'executable', | 142 'type': 'executable', |
134 'sources': [ | 143 'sources': [ |
135 'linux/suid/linux_util.c', | 144 'linux/suid/linux_util.c', |
136 'linux/suid/linux_util.h', | 145 'linux/suid/linux_util.h', |
137 'linux/suid/process_util.h', | 146 'linux/suid/process_util.h', |
138 'linux/suid/process_util_linux.c', | 147 'linux/suid/process_util_linux.c', |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 ], | 427 ], |
419 }], | 428 }], |
420 ], | 429 ], |
421 } | 430 } |
422 | 431 |
423 # Local Variables: | 432 # Local Variables: |
424 # tab-width:2 | 433 # tab-width:2 |
425 # indent-tabs-mode:nil | 434 # indent-tabs-mode:nil |
426 # End: | 435 # End: |
427 # vim: set expandtab tabstop=2 shiftwidth=2: | 436 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |