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

Side by Side Diff: public/all.gyp

Issue 16066003: Add wtf_unittests target that links unit tests outside DLL (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add base dependency for allocator target Created 7 years, 6 months 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 | Annotate | Revision Log
« no previous file with comments | « Source/wtf/wtf_tests.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Copyright (C) 2011 Google Inc. All rights reserved. 2 # Copyright (C) 2011 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 21 matching lines...) Expand all
32 '../Source/core/features.gypi', 32 '../Source/core/features.gypi',
33 ], 33 ],
34 'targets': [ 34 'targets': [
35 { 35 {
36 # These targets should be sufficient to cause everything 36 # These targets should be sufficient to cause everything
37 # else to build (incl. webkit); if they aren't, we have our 37 # else to build (incl. webkit); if they aren't, we have our
38 # dependencies wrong. 38 # dependencies wrong.
39 'target_name': 'all_blink', 39 'target_name': 'all_blink',
40 'type': 'none', 40 'type': 'none',
41 'dependencies': [ 41 'dependencies': [
42 '../Source/wtf/wtf_tests.gyp:wtf_unittests',
42 '../Source/WebKit/chromium/WebKitUnitTests.gyp:webkit_unit_tests ', 43 '../Source/WebKit/chromium/WebKitUnitTests.gyp:webkit_unit_tests ',
43 '../Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:D umpRenderTree', 44 '../Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTree.gyp:D umpRenderTree',
44 ], 45 ],
45 'conditions': [ 46 'conditions': [
46 ['OS=="android"', { 47 ['OS=="android"', {
47 'dependencies': [ 48 'dependencies': [
48 '../Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTr ee.gyp:DumpRenderTree_apk', 49 '../Tools/DumpRenderTree/DumpRenderTree.gyp/DumpRenderTr ee.gyp:DumpRenderTree_apk',
49 ], 50 ],
50 }], 51 }],
51 # Special target to wrap a gtest_target_type==shared_library 52 # Special target to wrap a gtest_target_type==shared_library
52 # webkit_unit_tests into an android apk for execution. See 53 # webkit_unit_tests into an android apk for execution. See
53 # base.gyp for TODO(jrg)s about this strategy. 54 # base.gyp for TODO(jrg)s about this strategy.
54 ['OS=="android" and gtest_target_type == "shared_library"', { 55 ['OS=="android" and gtest_target_type == "shared_library"', {
55 'dependencies': [ 56 'dependencies': [
56 '../Source/WebKit/chromium/WebKitUnitTests.gyp:webkit_un it_tests_apk', 57 '../Source/WebKit/chromium/WebKitUnitTests.gyp:webkit_un it_tests_apk',
57 ], 58 ],
58 }], 59 }],
59 ], 60 ],
60 } 61 }
61 ], 62 ],
62 } 63 }
OLDNEW
« no previous file with comments | « Source/wtf/wtf_tests.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698