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 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"', { | 129 [ 'os_posix == 1 and OS != "mac" and OS != "linux"', { |
130 # GYP requires that each file have at least one target defined. | 130 # GYP requires that each file have at least one target defined. |
131 'targets': [ | 131 'targets': [ |
132 { | 132 { |
133 'target_name': 'sandbox', | 133 'target_name': 'sandbox', |
134 'type': 'settings', | 134 'type': 'settings', |
135 }, | 135 }, |
136 ], | 136 ], |
137 }], | 137 }], |
138 [ 'OS=="linux" and selinux==0 and clang==0', { | 138 [ 'OS=="linux" and selinux==0 and clang==0', { |
139 'targets': [ | 139 'targets': [ |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 ], | 384 ], |
385 }], | 385 }], |
386 ], | 386 ], |
387 } | 387 } |
388 | 388 |
389 # Local Variables: | 389 # Local Variables: |
390 # tab-width:2 | 390 # tab-width:2 |
391 # indent-tabs-mode:nil | 391 # indent-tabs-mode:nil |
392 # End: | 392 # End: |
393 # vim: set expandtab tabstop=2 shiftwidth=2: | 393 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |