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

Side by Side Diff: Source/WebKit/chromium/WebKitUnitTests.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 | « no previous file | Source/bindings/bindings.gyp » ('j') | 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 'WEBKIT_DLL_UNITTEST', 72 'WEBKIT_DLL_UNITTEST',
73 ], 73 ],
74 }, { 74 }, {
75 'dependencies': [ 75 'dependencies': [
76 '../../core/core.gyp/core.gyp:webcore', 76 '../../core/core.gyp/core.gyp:webcore',
77 ], 77 ],
78 'defines': [ 78 'defines': [
79 'WEBKIT_IMPLEMENTATION=1', 79 'WEBKIT_IMPLEMENTATION=1',
80 ], 80 ],
81 'sources': [ 81 'sources': [
82 '<@(wtf_unittest_files)',
83 '<@(core_unittest_files)', 82 '<@(core_unittest_files)',
84 '<@(webkit_unittest_files)', 83 '<@(webkit_unittest_files)',
85 ], 84 ],
86 'conditions': [ 85 'conditions': [
87 ['toolkit_uses_gtk == 1', { 86 ['toolkit_uses_gtk == 1', {
88 'include_dirs': [ 87 'include_dirs': [
89 'public/gtk', 88 'public/gtk',
90 ], 89 ],
91 'variables': { 90 'variables': {
92 # FIXME: Enable warnings on other platforms. 91 # FIXME: Enable warnings on other platforms.
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 ['clang==1', { 153 ['clang==1', {
155 'target_defaults': { 154 'target_defaults': {
156 'cflags': ['-Wunused-parameter'], 155 'cflags': ['-Wunused-parameter'],
157 'xcode_settings': { 156 'xcode_settings': {
158 'WARNING_CFLAGS': ['-Wunused-parameter'], 157 'WARNING_CFLAGS': ['-Wunused-parameter'],
159 }, 158 },
160 }, 159 },
161 }], 160 }],
162 ], 161 ],
163 } 162 }
OLDNEW
« no previous file with comments | « no previous file | Source/bindings/bindings.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698