diff options
author | vchigrin <vchigrin@yandex-team.ru> | 2015-01-30 15:51:32 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-30 23:52:51 +0000 |
commit | 61944aec76677366442bacbf6b60cccf1508bca3 (patch) | |
tree | 427e68f488cb21ee0ebaf46f8d4e51516a1f3186 /ui/views/examples/BUILD.gn | |
parent | f3f0784e90e8d4a26b1aa3d57e435a01b44a99a2 (diff) | |
download | chromium_src-61944aec76677366442bacbf6b60cccf1508bca3.zip chromium_src-61944aec76677366442bacbf6b60cccf1508bca3.tar.gz chromium_src-61944aec76677366442bacbf6b60cccf1508bca3.tar.bz2 |
Fix chrome target in Windows GN build.
Review URL: https://codereview.chromium.org/874033003
Cr-Commit-Position: refs/heads/master@{#314031}
Diffstat (limited to 'ui/views/examples/BUILD.gn')
-rw-r--r-- | ui/views/examples/BUILD.gn | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/views/examples/BUILD.gn b/ui/views/examples/BUILD.gn index 52f070f..4421af1 100644 --- a/ui/views/examples/BUILD.gn +++ b/ui/views/examples/BUILD.gn @@ -157,4 +157,9 @@ executable("views_examples_with_content_exe") { "//content", "//ui/views_content_client", ] + + if (is_win) { + configs += [ "//build/config/win:windowed" ] + configs -= [ "//build/config/win:console" ] + } } |