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 'targets': [ | 6 'targets': [ |
7 # We have two principal targets: sandbox and sandbox_linux_unittests | 7 # We have two principal targets: sandbox and sandbox_linux_unittests |
8 # All other targets are listed as dependencies. | 8 # All other targets are listed as dependencies. |
9 # FIXME(jln): for historial reasons, sandbox_linux is the setuid sandbox | 9 # FIXME(jln): for historial reasons, sandbox_linux is the setuid sandbox |
10 # and is its own target. | 10 # and is its own target. |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 'linux/suid/sandbox.c', | 79 'linux/suid/sandbox.c', |
80 ], | 80 ], |
81 'cflags': [ | 81 'cflags': [ |
82 # For ULLONG_MAX | 82 # For ULLONG_MAX |
83 '-std=gnu99', | 83 '-std=gnu99', |
84 ], | 84 ], |
85 'include_dirs': [ | 85 'include_dirs': [ |
86 '..', | 86 '..', |
87 ], | 87 ], |
88 }, | 88 }, |
| 89 { |
| 90 'target_name': 'libc_urandom_override', |
| 91 'type': 'static_library', |
| 92 'sources': [ |
| 93 'linux/services/libc_urandom_override.cc', |
| 94 'linux/services/libc_urandom_override.h', |
| 95 ], |
| 96 'dependencies': [ |
| 97 '../base/base.gyp:base', |
| 98 ], |
| 99 'include_dirs': [ |
| 100 '..', |
| 101 ], |
| 102 }, |
89 ], | 103 ], |
90 } | 104 } |
OLD | NEW |