Commit 9d93d410 authored by Dirk Pranke's avatar Dirk Pranke Committed by Commit Bot

Fix missing data_deps on //chrome:chrome on Windows.

The //chrome:chrome group was missing a data_deps declaration
on //chrome:reorder_imports, which meant that chrome would build
fine but if you ran `mb zip //out/Release //chrome` you'd only
get the copy in //out/Release/initialexe/chrome.exe and not
the final version in //out/Release.

Bug: 902010

Change-Id: I0f3b662ced4c34eef974e8bede01fb9c89410dc1
Reviewed-on: https://chromium-review.googlesource.com/c/1325554Reviewed-by: default avatarKenneth Russell <kbr@chromium.org>
Commit-Queue: Dirk Pranke <dpranke@chromium.org>
Cr-Commit-Position: refs/heads/master@{#606586}
parent 05e6d611
...@@ -114,6 +114,7 @@ if (!is_android && !is_mac) { ...@@ -114,6 +114,7 @@ if (!is_android && !is_mac) {
] ]
if (is_win) { if (is_win) {
public_deps += [ ":reorder_imports" ] public_deps += [ ":reorder_imports" ]
data_deps += [ ":reorder_imports" ]
} }
if (use_aura && (is_win || is_linux)) { if (use_aura && (is_win || is_linux)) {
data_deps += [ "//chrome/app:service_manifests" ] data_deps += [ "//chrome/app:service_manifests" ]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment