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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'All', | 8 'target_name': 'All', |
9 'type': 'none', | 9 'type': 'none', |
10 'xcode_create_dependents_test_runner': 1, | 10 'xcode_create_dependents_test_runner': 1, |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 ['javascript_engine=="v8"', { | 42 ['javascript_engine=="v8"', { |
43 'dependencies': [ | 43 'dependencies': [ |
44 '../v8/tools/gyp/v8.gyp:*', | 44 '../v8/tools/gyp/v8.gyp:*', |
45 ], | 45 ], |
46 }], | 46 }], |
47 ['chrome_frame_define==1', { | 47 ['chrome_frame_define==1', { |
48 'dependencies': [ | 48 'dependencies': [ |
49 '../chrome_frame/chrome_frame.gyp:*', | 49 '../chrome_frame/chrome_frame.gyp:*', |
50 ], | 50 ], |
51 }], | 51 }], |
| 52 ['enable_pepper==1', { |
| 53 'dependencies': [ |
| 54 '../webkit/tools/pepper_test_plugin/pepper_test_plugin.gyp:*', |
| 55 ], |
| 56 }], |
52 ['OS=="mac"', { | 57 ['OS=="mac"', { |
53 'dependencies': [ | 58 'dependencies': [ |
54 '../third_party/ocmock/ocmock.gyp:*', | 59 '../third_party/ocmock/ocmock.gyp:*', |
55 ], | 60 ], |
56 }], | 61 }], |
57 ['OS=="linux"', { | 62 ['OS=="linux"', { |
58 'dependencies': [ | 63 'dependencies': [ |
59 '../breakpad/breakpad.gyp:*', | 64 '../breakpad/breakpad.gyp:*', |
60 '../courgette/courgette.gyp:*', | 65 '../courgette/courgette.gyp:*', |
61 '../sandbox/sandbox.gyp:*', | 66 '../sandbox/sandbox.gyp:*', |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 ], # targets | 236 ], # targets |
232 }], # OS="win" | 237 }], # OS="win" |
233 ], # conditions | 238 ], # conditions |
234 } | 239 } |
235 | 240 |
236 # Local Variables: | 241 # Local Variables: |
237 # tab-width:2 | 242 # tab-width:2 |
238 # indent-tabs-mode:nil | 243 # indent-tabs-mode:nil |
239 # End: | 244 # End: |
240 # vim: set expandtab tabstop=2 shiftwidth=2: | 245 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |