| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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, |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 'some.gyp:*', | 12 'some.gyp:*', |
| 13 '../base/base.gyp:*', | 13 '../base/base.gyp:*', |
| 14 '../net/net.gyp:*', | 14 '../net/net.gyp:*', |
| 15 '../sql/sql.gyp:*', | 15 '../sql/sql.gyp:*', |
| 16 '../testing/gtest.gyp:*', | 16 '../testing/gtest.gyp:*', |
| 17 '../third_party/bzip2/bzip2.gyp:*', | 17 '../third_party/bzip2/bzip2.gyp:*', |
| 18 '../third_party/icu/icu.gyp:*', | 18 '../third_party/icu/icu.gyp:*', |
| 19 '../third_party/libxml/libxml.gyp:*', | 19 '../third_party/libxml/libxml.gyp:*', |
| 20 '../third_party/sqlite/sqlite.gyp:*', | 20 '../third_party/sqlite/sqlite.gyp:*', |
| 21 '../third_party/zlib/zlib.gyp:*', | 21 '../third_party/zlib/zlib.gyp:*', |
| 22 '../ui/ui.gyp:*', |
| 22 'temp_gyp/googleurl.gyp:*', | 23 'temp_gyp/googleurl.gyp:*', |
| 23 # Add new dependencies to the !ios section just below, not here (see | 24 # Add new dependencies to the !ios section just below, not here (see |
| 24 # the comment there). | 25 # the comment there). |
| 25 ], | 26 ], |
| 26 'conditions': [ | 27 'conditions': [ |
| 27 # TODO(ios): This is temporary; currently almost nothing builds with | 28 # TODO(ios): This is temporary; currently almost nothing builds with |
| 28 # OS=ios. Move dependencies back to the main dependencies section above | 29 # OS=ios. Move dependencies back to the main dependencies section above |
| 29 # as gyp files come online. | 30 # as gyp files come online. |
| 30 ['OS!="ios"', { | 31 ['OS!="ios"', { |
| 31 'dependencies': [ | 32 'dependencies': [ |
| 32 '../chrome/chrome.gyp:*', | 33 '../chrome/chrome.gyp:*', |
| 33 '../content/content.gyp:*', | 34 '../content/content.gyp:*', |
| 34 '../crypto/crypto.gyp:*', | 35 '../crypto/crypto.gyp:*', |
| 35 '../ui/ui.gyp:*', | |
| 36 '../gpu/gpu.gyp:*', | 36 '../gpu/gpu.gyp:*', |
| 37 '../gpu/tools/tools.gyp:*', | 37 '../gpu/tools/tools.gyp:*', |
| 38 '../ipc/ipc.gyp:*', | 38 '../ipc/ipc.gyp:*', |
| 39 '../jingle/jingle.gyp:*', | 39 '../jingle/jingle.gyp:*', |
| 40 '../media/media.gyp:*', | 40 '../media/media.gyp:*', |
| 41 '../ppapi/ppapi.gyp:*', | 41 '../ppapi/ppapi.gyp:*', |
| 42 '../ppapi/ppapi_internal.gyp:*', | 42 '../ppapi/ppapi_internal.gyp:*', |
| 43 '../printing/printing.gyp:*', | 43 '../printing/printing.gyp:*', |
| 44 '../sdch/sdch.gyp:*', | 44 '../sdch/sdch.gyp:*', |
| 45 '../skia/skia.gyp:*', | 45 '../skia/skia.gyp:*', |
| (...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 '../base/base.gyp:base_unittests_run', | 684 '../base/base.gyp:base_unittests_run', |
| 685 '../chrome/chrome.gyp:browser_tests_run', | 685 '../chrome/chrome.gyp:browser_tests_run', |
| 686 '../chrome/chrome.gyp:unit_tests_run', | 686 '../chrome/chrome.gyp:unit_tests_run', |
| 687 '../net/net.gyp:net_unittests_run', | 687 '../net/net.gyp:net_unittests_run', |
| 688 ], | 688 ], |
| 689 }, # target_name: chromium_swarm_tests | 689 }, # target_name: chromium_swarm_tests |
| 690 ], | 690 ], |
| 691 }], | 691 }], |
| 692 ], # conditions | 692 ], # conditions |
| 693 } | 693 } |
| OLD | NEW |