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

Side by Side Diff: Source/web/web_tests.gyp

Issue 412683003: Switch webkit_unit_tests to use the new test launcher. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix gyp for non-component Created 6 years, 5 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/web/web.gypi ('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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 ], 62 ],
63 'sources': [ 63 'sources': [
64 '../web/tests/RunAllTests.cpp', 64 '../web/tests/RunAllTests.cpp',
65 ], 65 ],
66 'include_dirs': [ 66 'include_dirs': [
67 '../../public/web', 67 '../../public/web',
68 '../web', 68 '../web',
69 'src', 69 'src',
70 ], 70 ],
71 'conditions': [ 71 'conditions': [
72 ['component=="shared_library"', { 72 ['component!="shared_library"', {
73 'defines': [
74 'BLINK_DLL_UNITTEST',
75 ],
76 }, {
77 'dependencies': [ 73 'dependencies': [
78 '../core/core.gyp:webcore', 74 '../core/core.gyp:webcore',
79 ], 75 ],
80 'defines': [ 76 'defines': [
81 'BLINK_IMPLEMENTATION=1', 77 'BLINK_IMPLEMENTATION=1',
82 'INSIDE_BLINK', 78 'INSIDE_BLINK',
83 ], 79 ],
84 'sources': [ 80 'sources': [
85 '<@(bindings_unittest_files)', 81 '<@(bindings_unittest_files)',
86 '<@(core_unittest_files)', 82 '<@(core_unittest_files)',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 ], 143 ],
148 'variables': { 144 'variables': {
149 'test_suite_name': 'webkit_unit_tests', 145 'test_suite_name': 'webkit_unit_tests',
150 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)w ebkit_unit_tests<(SHARED_LIB_SUFFIX)', 146 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)w ebkit_unit_tests<(SHARED_LIB_SUFFIX)',
151 }, 147 },
152 'includes': [ '../../../../build/apk_test.gypi' ], 148 'includes': [ '../../../../build/apk_test.gypi' ],
153 }], 149 }],
154 }], 150 }],
155 ], 151 ],
156 } 152 }
OLDNEW
« no previous file with comments | « Source/web/web.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698