| 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 26 matching lines...) Expand all Loading... |
| 37 '../webkit/webkit.gyp:*', | 37 '../webkit/webkit.gyp:*', |
| 38 'util/build_util.gyp:*', | 38 'util/build_util.gyp:*', |
| 39 'temp_gyp/googleurl.gyp:*', | 39 'temp_gyp/googleurl.gyp:*', |
| 40 ], | 40 ], |
| 41 'conditions': [ | 41 'conditions': [ |
| 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', { |
| 48 'dependencies': [ |
| 49 '../chrome_frame/chrome_frame.gyp:*', |
| 50 ], |
| 51 }], |
| 47 ['OS=="mac"', { | 52 ['OS=="mac"', { |
| 48 'dependencies': [ | 53 'dependencies': [ |
| 49 '../third_party/ocmock/ocmock.gyp:*', | 54 '../third_party/ocmock/ocmock.gyp:*', |
| 50 ], | 55 ], |
| 51 }], | 56 }], |
| 52 ['OS=="linux"', { | 57 ['OS=="linux"', { |
| 53 'dependencies': [ | 58 'dependencies': [ |
| 54 '../breakpad/breakpad.gyp:*', | 59 '../breakpad/breakpad.gyp:*', |
| 55 '../sandbox/sandbox.gyp:*', | 60 '../sandbox/sandbox.gyp:*', |
| 56 '../third_party/harfbuzz/harfbuzz.gyp:*', | 61 '../third_party/harfbuzz/harfbuzz.gyp:*', |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 ], # targets | 211 ], # targets |
| 207 }], # OS="win" | 212 }], # OS="win" |
| 208 ], # conditions | 213 ], # conditions |
| 209 } | 214 } |
| 210 | 215 |
| 211 # Local Variables: | 216 # Local Variables: |
| 212 # tab-width:2 | 217 # tab-width:2 |
| 213 # indent-tabs-mode:nil | 218 # indent-tabs-mode:nil |
| 214 # End: | 219 # End: |
| 215 # vim: set expandtab tabstop=2 shiftwidth=2: | 220 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |