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

Side by Side Diff: third_party/WebKit/Source/wtf/wtf_tests.gyp

Issue 1647453002: allocator cleanup: remove dependencies on allocator from all targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 10 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
OLDNEW
1 # Copyright (C) 2013 Google Inc. All rights reserved. 1 # Copyright (C) 2013 Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
(...skipping 29 matching lines...) Expand all
40 '../config.gyp:unittest_config', 40 '../config.gyp:unittest_config',
41 '<(DEPTH)/base/base.gyp:test_support_base', 41 '<(DEPTH)/base/base.gyp:test_support_base',
42 ], 42 ],
43 'sources': [ 43 'sources': [
44 'testing/RunAllTests.cpp', 44 'testing/RunAllTests.cpp',
45 '<@(wtf_unittest_files)', 45 '<@(wtf_unittest_files)',
46 ], 46 ],
47 # Disable c4267 warnings until we fix size_t to int truncations. 47 # Disable c4267 warnings until we fix size_t to int truncations.
48 'msvs_disabled_warnings': [4127, 4510, 4512, 4610, 4706, 4068, 4267], 48 'msvs_disabled_warnings': [4127, 4510, 4512, 4610, 4706, 4068, 4267],
49 'conditions': [ 49 'conditions': [
50 ['os_posix==1 and OS!="mac" and OS!="android" and OS!="ios" and use_allo cator!="none"', {
51 'dependencies': [
52 '<(DEPTH)/base/base.gyp:base',
petrcermak 2016/01/28 14:58:50 ditto
Primiano Tucci (use gerrit) 2016/01/28 15:20:03 Acknowledged.
53 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
54 ],
55 }],
56 ['OS=="android"', { 50 ['OS=="android"', {
57 'type': 'shared_library', 51 'type': 'shared_library',
58 'dependencies': [ 52 'dependencies': [
59 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', 53 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
60 '<(DEPTH)/tools/android/forwarder2/forwarder.gyp:forwarder2', 54 '<(DEPTH)/tools/android/forwarder2/forwarder.gyp:forwarder2',
61 ], 55 ],
62 }], 56 }],
63 ] 57 ]
64 }, 58 },
65 { 59 {
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 '../../../../build/isolate.gypi', 101 '../../../../build/isolate.gypi',
108 ], 102 ],
109 'sources': [ 103 'sources': [
110 'wtf_unittests.isolate', 104 'wtf_unittests.isolate',
111 ], 105 ],
112 }, 106 },
113 ], 107 ],
114 }], 108 }],
115 ], 109 ],
116 } 110 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698