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

Side by Side Diff: content/content_tests.gypi

Issue 2029343002: Link to DirectWrite directly, instead of calling LoadLibrary (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Link content_unittests to dwrite.dll Created 4 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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'layouttest_support_content_sources': [ 7 'layouttest_support_content_sources': [
8 'public/test/layouttest_support.h', 8 'public/test/layouttest_support.h',
9 'public/test/nested_message_pump_android.cc', 9 'public/test/nested_message_pump_android.cc',
10 'public/test/nested_message_pump_android.h', 10 'public/test/nested_message_pump_android.h',
(...skipping 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after
1148 ['OS=="linux" and use_dbus==1', { 1148 ['OS=="linux" and use_dbus==1', {
1149 'dependencies': [ 1149 'dependencies': [
1150 '../build/linux/system.gyp:dbus', 1150 '../build/linux/system.gyp:dbus',
1151 '../dbus/dbus.gyp:dbus_test_support', 1151 '../dbus/dbus.gyp:dbus_test_support',
1152 ], 1152 ],
1153 }], 1153 }],
1154 ['OS=="win"', { 1154 ['OS=="win"', {
1155 'dependencies': [ 1155 'dependencies': [
1156 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2', 1156 '../third_party/iaccessible2/iaccessible2.gyp:iaccessible2',
1157 ], 1157 ],
1158 'msvs_settings': {
1159 'VCLinkerTool': {
1160 'AdditionalDependencies': [
1161 'dwrite.lib',
1162 ],
1163 },
1164 },
1158 }], 1165 }],
1159 ['OS=="mac"', { 1166 ['OS=="mac"', {
1160 # These flags are needed to run the test on Mac. 1167 # These flags are needed to run the test on Mac.
1161 # Search for comments about "xcode_settings" in chrome_tests.gypi. 1168 # Search for comments about "xcode_settings" in chrome_tests.gypi.
1162 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, 1169 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
1163 }], 1170 }],
1164 ['chromeos==1', { 1171 ['chromeos==1', {
1165 'dependencies': [ 1172 'dependencies': [
1166 '../chromeos/chromeos.gyp:chromeos', 1173 '../chromeos/chromeos.gyp:chromeos',
1167 ], 1174 ],
(...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after
1933 'content_unittests_apk.isolate', 1940 'content_unittests_apk.isolate',
1934 ], 1941 ],
1935 }, 1942 },
1936 ], 1943 ],
1937 }, 1944 },
1938 ], 1945 ],
1939 ], 1946 ],
1940 }], 1947 }],
1941 ], 1948 ],
1942 } 1949 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698