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

Side by Side Diff: Source/platform/blink_platform_tests.gyp

Issue 696233002: Make blink_heap_unittests link in static_library Debug builds on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « no previous file | 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) 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 'heap/RunAllTests.cpp', 49 'heap/RunAllTests.cpp',
50 '<@(platform_heap_test_files)', 50 '<@(platform_heap_test_files)',
51 ], 51 ],
52 'conditions': [ 52 'conditions': [
53 ['os_posix==1 and OS!="mac" and OS!="android" and OS!="ios" and use_allo cator!="none"', { 53 ['os_posix==1 and OS!="mac" and OS!="android" and OS!="ios" and use_allo cator!="none"', {
54 'dependencies': [ 54 'dependencies': [
55 '<(DEPTH)/base/base.gyp:base', 55 '<(DEPTH)/base/base.gyp:base',
56 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 56 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
57 ] 57 ]
58 }], 58 }],
59 ['OS=="win" and component!="shared_library" and win_use_allocator_shim== 1', {
60 'dependencies': [
61 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
62 ]
63 }],
59 ['OS=="android"', { 64 ['OS=="android"', {
60 'type': 'shared_library', 65 'type': 'shared_library',
61 'dependencies': [ 66 'dependencies': [
62 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', 67 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code',
63 '<(DEPTH)/tools/android/forwarder2/forwarder.gyp:forwarder2', 68 '<(DEPTH)/tools/android/forwarder2/forwarder.gyp:forwarder2',
64 ], 69 ],
65 }], 70 }],
66 ], 71 ],
67 }, 72 },
68 { 73 {
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 'blink_platform_unittests', 134 'blink_platform_unittests',
130 ], 135 ],
131 'variables': { 136 'variables': {
132 'test_suite_name': 'blink_platform_unittests', 137 'test_suite_name': 'blink_platform_unittests',
133 }, 138 },
134 'includes': [ '../../../../build/apk_test.gypi' ], 139 'includes': [ '../../../../build/apk_test.gypi' ],
135 }], 140 }],
136 }], 141 }],
137 ], 142 ],
138 } 143 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698