Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(244)

Side by Side Diff: build/all.gyp

Issue 11418005: Get a minimal unit_tests target building and running for iOS (Closed) Base URL: http://git.chromium.org/chromium/src.git@chrome-gyp-ios-support
Patch Set: Better ifdefing in chrome_paths Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/profile_error_dialog.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 '../chrome/chrome.gyp:*',
14 '../content/content.gyp:*', 15 '../content/content.gyp:*',
15 '../crypto/crypto.gyp:*', 16 '../crypto/crypto.gyp:*',
16 '../media/media.gyp:*', 17 '../media/media.gyp:*',
17 '../net/net.gyp:*', 18 '../net/net.gyp:*',
18 '../sdch/sdch.gyp:*', 19 '../sdch/sdch.gyp:*',
19 '../sql/sql.gyp:*', 20 '../sql/sql.gyp:*',
20 '../sync/sync.gyp:*', 21 '../sync/sync.gyp:*',
21 '../testing/gmock.gyp:*', 22 '../testing/gmock.gyp:*',
22 '../testing/gtest.gyp:*', 23 '../testing/gtest.gyp:*',
23 '../third_party/bzip2/bzip2.gyp:*', 24 '../third_party/bzip2/bzip2.gyp:*',
24 '../third_party/icu/icu.gyp:*', 25 '../third_party/icu/icu.gyp:*',
25 '../third_party/libxml/libxml.gyp:*', 26 '../third_party/libxml/libxml.gyp:*',
26 '../third_party/sqlite/sqlite.gyp:*', 27 '../third_party/sqlite/sqlite.gyp:*',
27 '../third_party/zlib/zlib.gyp:*', 28 '../third_party/zlib/zlib.gyp:*',
28 '../ui/ui.gyp:*', 29 '../ui/ui.gyp:*',
29 '../webkit/support/webkit_support.gyp:*', 30 '../webkit/support/webkit_support.gyp:*',
30 'temp_gyp/googleurl.gyp:*', 31 'temp_gyp/googleurl.gyp:*',
31 ], 32 ],
32 'conditions': [ 33 'conditions': [
33 ['OS!="ios"', { 34 ['OS!="ios"', {
34 'dependencies': [ 35 'dependencies': [
35 '../cc/cc_tests.gyp:*', 36 '../cc/cc_tests.gyp:*',
36 '../chrome/chrome.gyp:*',
37 '../device/device.gyp:*', 37 '../device/device.gyp:*',
38 '../gpu/gpu.gyp:*', 38 '../gpu/gpu.gyp:*',
39 '../gpu/tools/tools.gyp:*', 39 '../gpu/tools/tools.gyp:*',
40 '../ipc/ipc.gyp:*', 40 '../ipc/ipc.gyp:*',
41 '../jingle/jingle.gyp:*', 41 '../jingle/jingle.gyp:*',
42 '../ppapi/ppapi.gyp:*', 42 '../ppapi/ppapi.gyp:*',
43 '../ppapi/ppapi_internal.gyp:*', 43 '../ppapi/ppapi_internal.gyp:*',
44 '../printing/printing.gyp:*', 44 '../printing/printing.gyp:*',
45 '../skia/skia.gyp:*', 45 '../skia/skia.gyp:*',
46 '../third_party/cacheinvalidation/cacheinvalidation.gyp:*', 46 '../third_party/cacheinvalidation/cacheinvalidation.gyp:*',
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 ], 173 ],
174 }, 174 },
175 ], 175 ],
176 ], 176 ],
177 }, # target_name: All_syzygy 177 }, # target_name: All_syzygy
178 { 178 {
179 'target_name': 'chromium_builder_tests', 179 'target_name': 'chromium_builder_tests',
180 'type': 'none', 180 'type': 'none',
181 'dependencies': [ 181 'dependencies': [
182 '../base/base.gyp:base_unittests', 182 '../base/base.gyp:base_unittests',
183 '../chrome/chrome.gyp:unit_tests',
183 '../crypto/crypto.gyp:crypto_unittests', 184 '../crypto/crypto.gyp:crypto_unittests',
184 '../media/media.gyp:media_unittests', 185 '../media/media.gyp:media_unittests',
185 '../net/net.gyp:net_unittests', 186 '../net/net.gyp:net_unittests',
186 '../sql/sql.gyp:sql_unittests', 187 '../sql/sql.gyp:sql_unittests',
187 '../ui/ui.gyp:ui_unittests', 188 '../ui/ui.gyp:ui_unittests',
188 'temp_gyp/googleurl.gyp:googleurl_unittests', 189 'temp_gyp/googleurl.gyp:googleurl_unittests',
189 ], 190 ],
190 'conditions': [ 191 'conditions': [
191 ['OS!="ios"', { 192 ['OS!="ios"', {
192 'dependencies': [ 193 'dependencies': [
193 '../cc/cc_tests.gyp:cc_unittests', 194 '../cc/cc_tests.gyp:cc_unittests',
194 '../chrome/chrome.gyp:browser_tests', 195 '../chrome/chrome.gyp:browser_tests',
195 '../chrome/chrome.gyp:chromedriver2_unittests', 196 '../chrome/chrome.gyp:chromedriver2_unittests',
196 '../chrome/chrome.gyp:interactive_ui_tests', 197 '../chrome/chrome.gyp:interactive_ui_tests',
197 '../chrome/chrome.gyp:safe_browsing_tests', 198 '../chrome/chrome.gyp:safe_browsing_tests',
198 '../chrome/chrome.gyp:sync_integration_tests', 199 '../chrome/chrome.gyp:sync_integration_tests',
199 '../chrome/chrome.gyp:unit_tests',
200 '../cloud_print/cloud_print.gyp:cloud_print_unittests', 200 '../cloud_print/cloud_print.gyp:cloud_print_unittests',
201 '../content/content.gyp:content_browsertests', 201 '../content/content.gyp:content_browsertests',
202 '../content/content.gyp:content_unittests', 202 '../content/content.gyp:content_unittests',
203 '../device/device.gyp:device_unittests', 203 '../device/device.gyp:device_unittests',
204 '../gpu/gpu.gyp:gpu_unittests', 204 '../gpu/gpu.gyp:gpu_unittests',
205 '../gpu/gles2_conform_support/gles2_conform_support.gyp:gles2_confor m_support', 205 '../gpu/gles2_conform_support/gles2_conform_support.gyp:gles2_confor m_support',
206 '../ipc/ipc.gyp:ipc_tests', 206 '../ipc/ipc.gyp:ipc_tests',
207 '../jingle/jingle.gyp:jingle_unittests', 207 '../jingle/jingle.gyp:jingle_unittests',
208 '../ppapi/ppapi_internal.gyp:ppapi_unittests', 208 '../ppapi/ppapi_internal.gyp:ppapi_unittests',
209 '../printing/printing.gyp:printing_unittests', 209 '../printing/printing.gyp:printing_unittests',
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 '../chrome/chrome.gyp:browser_tests_run', 732 '../chrome/chrome.gyp:browser_tests_run',
733 '../chrome/chrome.gyp:sync_integration_tests_run', 733 '../chrome/chrome.gyp:sync_integration_tests_run',
734 '../chrome/chrome.gyp:unit_tests_run', 734 '../chrome/chrome.gyp:unit_tests_run',
735 '../net/net.gyp:net_unittests_run', 735 '../net/net.gyp:net_unittests_run',
736 ], 736 ],
737 }, # target_name: chromium_swarm_tests 737 }, # target_name: chromium_swarm_tests
738 ], 738 ],
739 }], 739 }],
740 ], # conditions 740 ], # conditions
741 } 741 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/profile_error_dialog.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698