| 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 17 matching lines...) Expand all Loading... |
| 28 '../third_party/libpng/libpng.gyp:*', | 28 '../third_party/libpng/libpng.gyp:*', |
| 29 '../third_party/libxml/libxml.gyp:*', | 29 '../third_party/libxml/libxml.gyp:*', |
| 30 '../third_party/libxslt/libxslt.gyp:*', | 30 '../third_party/libxslt/libxslt.gyp:*', |
| 31 '../third_party/lzma_sdk/lzma_sdk.gyp:*', | 31 '../third_party/lzma_sdk/lzma_sdk.gyp:*', |
| 32 '../third_party/modp_b64/modp_b64.gyp:*', | 32 '../third_party/modp_b64/modp_b64.gyp:*', |
| 33 '../third_party/npapi/npapi.gyp:*', | 33 '../third_party/npapi/npapi.gyp:*', |
| 34 '../third_party/ots/ots.gyp:*', | 34 '../third_party/ots/ots.gyp:*', |
| 35 '../third_party/sqlite/sqlite.gyp:*', | 35 '../third_party/sqlite/sqlite.gyp:*', |
| 36 '../third_party/WebKit/WebKit/chromium/WebKit.gyp:*', | 36 '../third_party/WebKit/WebKit/chromium/WebKit.gyp:*', |
| 37 '../third_party/zlib/zlib.gyp:*', | 37 '../third_party/zlib/zlib.gyp:*', |
| 38 '../webkit/tools/pepper_test_plugin/pepper_test_plugin.gyp:*', | |
| 39 '../webkit/tools/test_shell/test_shell.gyp:*', | 38 '../webkit/tools/test_shell/test_shell.gyp:*', |
| 40 '../webkit/webkit.gyp:*', | 39 '../webkit/webkit.gyp:*', |
| 41 'util/build_util.gyp:*', | 40 'util/build_util.gyp:*', |
| 42 'temp_gyp/googleurl.gyp:*', | 41 'temp_gyp/googleurl.gyp:*', |
| 43 ], | 42 ], |
| 44 'conditions': [ | 43 'conditions': [ |
| 45 ['javascript_engine=="v8"', { | 44 ['javascript_engine=="v8"', { |
| 46 'dependencies': [ | 45 'dependencies': [ |
| 47 '../v8/tools/gyp/v8.gyp:*', | 46 '../v8/tools/gyp/v8.gyp:*', |
| 48 ], | 47 ], |
| 49 }], | 48 }], |
| 50 ['chrome_frame_define==1', { | 49 ['chrome_frame_define==1', { |
| 51 'dependencies': [ | 50 'dependencies': [ |
| 52 '../chrome_frame/chrome_frame.gyp:*', | 51 '../chrome_frame/chrome_frame.gyp:*', |
| 53 ], | 52 ], |
| 54 }], | 53 }], |
| 55 ['enable_gpu==1', { | 54 ['enable_pepper==1', { |
| 56 'dependencies': [ | 55 'dependencies': [ |
| 56 '../webkit/tools/pepper_test_plugin/pepper_test_plugin.gyp:*', |
| 57 '../gpu/gpu.gyp:*', | 57 '../gpu/gpu.gyp:*', |
| 58 ], | 58 ], |
| 59 }], | 59 }], |
| 60 ['OS=="mac" or OS=="linux" or OS=="freebsd"', { | 60 ['OS=="mac" or OS=="linux" or OS=="freebsd"', { |
| 61 'dependencies': [ | 61 'dependencies': [ |
| 62 '../third_party/yasm/yasm.gyp:*#host', | 62 '../third_party/yasm/yasm.gyp:*#host', |
| 63 ], | 63 ], |
| 64 }], | 64 }], |
| 65 ['OS=="mac"', { | 65 ['OS=="mac"', { |
| 66 'dependencies': [ | 66 'dependencies': [ |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 ], # targets | 227 ], # targets |
| 228 }], # OS="win" | 228 }], # OS="win" |
| 229 ], # conditions | 229 ], # conditions |
| 230 } | 230 } |
| 231 | 231 |
| 232 # Local Variables: | 232 # Local Variables: |
| 233 # tab-width:2 | 233 # tab-width:2 |
| 234 # indent-tabs-mode:nil | 234 # indent-tabs-mode:nil |
| 235 # End: | 235 # End: |
| 236 # vim: set expandtab tabstop=2 shiftwidth=2: | 236 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |