summaryrefslogtreecommitdiffstats
path: root/remoting/base
diff options
context:
space:
mode:
authorbrettw <brettw@chromium.org>2015-05-05 12:43:04 -0700
committerCommit bot <commit-bot@chromium.org>2015-05-05 19:44:01 +0000
commit51d04a1d341fe739beaff1528095f025a66f3fcc (patch)
treef96b54edeaa51447ef49dcdc057747b346fdbc7a /remoting/base
parent7bd00a274893ee7334dfbc78ca5046f1af876382 (diff)
downloadchromium_src-51d04a1d341fe739beaff1528095f025a66f3fcc.zip
chromium_src-51d04a1d341fe739beaff1528095f025a66f3fcc.tar.gz
chromium_src-51d04a1d341fe739beaff1528095f025a66f3fcc.tar.bz2
GN Windows component build fixes
The main thing this fixes is the midi component. Previously midi_unittests was never compiled on any Windows component bot and the component build was all messed up. This patch makes the component build work correctly for this component. Remove installer_util_unittests.rc and its header. These seem to be autogenerated Visual Studio files. They just include the strings resource file, but GN includes the strings resource file itself by nature of the dependencies (GYP doesn't do this). CQ_EXTRA_TRYBOTS=tryserver.chromium.linux:android_chromium_gn_compile_dbg,android_chromium_gn_compile_rel;tryserver.chromium.win:win8_chromium_gn_rel,win8_chromium_gn_dbg BUG=470212 Review URL: https://codereview.chromium.org/1121363002 Cr-Commit-Position: refs/heads/master@{#328383}
Diffstat (limited to 'remoting/base')
-rw-r--r--remoting/base/BUILD.gn4
1 files changed, 4 insertions, 0 deletions
diff --git a/remoting/base/BUILD.gn b/remoting/base/BUILD.gn
index 48f40ef..b36f5e8 100644
--- a/remoting/base/BUILD.gn
+++ b/remoting/base/BUILD.gn
@@ -84,4 +84,8 @@ source_set("unit_tests") {
sources += [ "resources_unittest.cc" ]
deps += [ "//breakpad:client" ]
}
+
+ if (is_win) {
+ libs = [ "rpcrt4.lib" ] # For UuidCreate in breakpad_win_unittest.cc.
+ }
}