diff options
author | brettw <brettw@chromium.org> | 2015-03-02 15:13:15 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-02 23:13:43 +0000 |
commit | 4897a61fd022efb0b43033846fe878a351c55b35 (patch) | |
tree | eed715fb2228d213fba3c5ed4af541f23e3e23d6 /ash/BUILD.gn | |
parent | 7b6ab410b0665dcb84c2818f4453b36f2c5a1e36 (diff) | |
download | chromium_src-4897a61fd022efb0b43033846fe878a351c55b35.zip chromium_src-4897a61fd022efb0b43033846fe878a351c55b35.tar.gz chromium_src-4897a61fd022efb0b43033846fe878a351c55b35.tar.bz2 |
Remove link_chrome_on_windows GN flag.
This flag was used to disable linking when the bots were too behind. It's not needed any more.
Review URL: https://codereview.chromium.org/974543002
Cr-Commit-Position: refs/heads/master@{#318795}
Diffstat (limited to 'ash/BUILD.gn')
-rw-r--r-- | ash/BUILD.gn | 70 |
1 files changed, 34 insertions, 36 deletions
diff --git a/ash/BUILD.gn b/ash/BUILD.gn index ed4cd13..7db48e0 100644 --- a/ash/BUILD.gn +++ b/ash/BUILD.gn @@ -352,48 +352,46 @@ test("ash_unittests") { } } -if (!is_win || link_chrome_on_windows) { - executable("ash_shell") { - testonly = true - sources = [ - "shell/shell_main.cc", - ] +executable("ash_shell") { + testonly = true + sources = [ + "shell/shell_main.cc", + ] - deps = [ - ":ash_shell_lib", - "//components/user_manager", - ] + deps = [ + ":ash_shell_lib", + "//components/user_manager", + ] - if (is_win) { - configs -= [ "//build/config/win:console" ] - configs += [ "//build/config/win:windowed" ] - deps += [ "//sandbox" ] - } + if (is_win) { + configs -= [ "//build/config/win:console" ] + configs += [ "//build/config/win:windowed" ] + deps += [ "//sandbox" ] + } - if (is_chromeos) { - deps += [ "//device/bluetooth" ] - } + if (is_chromeos) { + deps += [ "//device/bluetooth" ] } +} - test("ash_shell_unittests") { - sources = [ - "shell/window_watcher_unittest.cc", - "test/ash_unittests.cc", - ] +test("ash_shell_unittests") { + sources = [ + "shell/window_watcher_unittest.cc", + "test/ash_unittests.cc", + ] - deps = [ - ":ash_shell_lib", - ":test_support", - "//base/test:test_support", - "//components/user_manager", - "//content/test:test_support", - "//skia", - "//testing/gtest", - "//ui/accessibility", - ] + deps = [ + ":ash_shell_lib", + ":test_support", + "//base/test:test_support", + "//components/user_manager", + "//content/test:test_support", + "//skia", + "//testing/gtest", + "//ui/accessibility", + ] - if (is_chromeos) { - deps += [ "//ui/display" ] - } + if (is_chromeos) { + deps += [ "//ui/display" ] } } |