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

Side by Side Diff: Source/config.gyp

Issue 16066003: Add wtf_unittests target that links unit tests outside DLL (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Separate run_all_tests lib 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
OLDNEW
1 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 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 19 matching lines...) Expand all
30 { 30 {
31 'variables': { 31 'variables': {
32 # If set to 1, doesn't compile debug symbols into webcore reducing the 32 # If set to 1, doesn't compile debug symbols into webcore reducing the
33 # size of the binary and increasing the speed of gdb. gcc only. 33 # size of the binary and increasing the speed of gdb. gcc only.
34 'remove_webcore_debug_symbols%': 0, 34 'remove_webcore_debug_symbols%': 0,
35 }, 35 },
36 'targets': [{ 36 'targets': [{
37 'target_name': 'config', 37 'target_name': 'config',
38 'type': 'none', 38 'type': 'none',
39 'direct_dependent_settings': { 39 'direct_dependent_settings': {
40 'defines': [
41 'WEBKIT_IMPLEMENTATION=1',
42 ],
43 'msvs_disabled_warnings': [ 40 'msvs_disabled_warnings': [
44 4138, 4244, 4291, 4305, 4344, 4355, 4521, 4099, 41 4138, 4244, 4291, 4305, 4344, 4355, 4521, 4099,
45 ], 42 ],
46 'conditions': [ 43 'conditions': [
47 ['OS=="win" and component=="shared_library"', { 44 ['OS=="win" and component=="shared_library"', {
48 'defines': [ 45 'defines': [
49 'USING_V8_SHARED', 46 'USING_V8_SHARED',
50 ], 47 ],
51 }], 48 }],
52 ['OS=="win"', { 49 ['OS=="win"', {
(...skipping 18 matching lines...) Expand all
71 ['clang==1', { 68 ['clang==1', {
72 'cflags': ['-Wglobal-constructors'], 69 'cflags': ['-Wglobal-constructors'],
73 'xcode_settings': { 70 'xcode_settings': {
74 'WARNING_CFLAGS': ['-Wglobal-constructors'], 71 'WARNING_CFLAGS': ['-Wglobal-constructors'],
75 }, 72 },
76 }], 73 }],
77 ], 74 ],
78 }, 75 },
79 }], 76 }],
80 } 77 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698