| 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 18 matching lines...) Expand all Loading... |
| 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/test_shell/test_shell.gyp:*', | 38 '../webkit/tools/test_shell/test_shell.gyp:*', |
| 39 '../webkit/tools/pepper_test_plugin/pepper_test_plugin.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 }], |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 '../gears/gears.gyp:*', | 97 '../gears/gears.gyp:*', |
| 99 '../gpu/gpu.gyp:*', | 98 '../gpu/gpu.gyp:*', |
| 100 '../gpu/demos/demos.gyp:*', | 99 '../gpu/demos/demos.gyp:*', |
| 101 '../rlz/rlz.gyp:*', | 100 '../rlz/rlz.gyp:*', |
| 102 '../sandbox/sandbox.gyp:*', | 101 '../sandbox/sandbox.gyp:*', |
| 103 '../third_party/bsdiff/bsdiff.gyp:*', | 102 '../third_party/bsdiff/bsdiff.gyp:*', |
| 104 '../third_party/bspatch/bspatch.gyp:*', | 103 '../third_party/bspatch/bspatch.gyp:*', |
| 105 '../third_party/cld/cld.gyp:*', | 104 '../third_party/cld/cld.gyp:*', |
| 106 '../third_party/gles_book_examples/gles_book_examples.gyp:*', | 105 '../third_party/gles_book_examples/gles_book_examples.gyp:*', |
| 107 '../tools/memory_watcher/memory_watcher.gyp:*', | 106 '../tools/memory_watcher/memory_watcher.gyp:*', |
| 107 # As of now Skia build has problems with Linux and/or 64 bits. |
| 108 # TODO(sehr,brettw): Make this unconditional. |
| 109 '../webkit/tools/pepper_test_plugin/pepper_test_plugin.gyp:*', |
| 108 ], | 110 ], |
| 109 }, { | 111 }, { |
| 110 'dependencies': [ | 112 'dependencies': [ |
| 111 '../third_party/libevent/libevent.gyp:*', | 113 '../third_party/libevent/libevent.gyp:*', |
| 112 ], | 114 ], |
| 113 }], | 115 }], |
| 114 ['OS=="win" or (OS=="linux" and toolkit_views==1)', { | 116 ['OS=="win" or (OS=="linux" and toolkit_views==1)', { |
| 115 'dependencies': [ | 117 'dependencies': [ |
| 116 '../views/views.gyp:*', | 118 '../views/views.gyp:*', |
| 117 ], | 119 ], |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 ], # targets | 246 ], # targets |
| 245 }], # OS="win" | 247 }], # OS="win" |
| 246 ], # conditions | 248 ], # conditions |
| 247 } | 249 } |
| 248 | 250 |
| 249 # Local Variables: | 251 # Local Variables: |
| 250 # tab-width:2 | 252 # tab-width:2 |
| 251 # indent-tabs-mode:nil | 253 # indent-tabs-mode:nil |
| 252 # End: | 254 # End: |
| 253 # vim: set expandtab tabstop=2 shiftwidth=2: | 255 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |