summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjbroman@chromium.org <jbroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-11 19:34:20 +0000
committerjbroman@chromium.org <jbroman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-08-11 19:35:37 +0000
commit0eb48a538c59f11647cb880a6fcee35c60502174 (patch)
tree0d805d2a80ef2ee472a0e83a8389b9063d3c14e9
parent77faf763e8ad12b119201d2da84b597482985938 (diff)
downloadchromium_src-0eb48a538c59f11647cb880a6fcee35c60502174.zip
chromium_src-0eb48a538c59f11647cb880a6fcee35c60502174.tar.gz
chromium_src-0eb48a538c59f11647cb880a6fcee35c60502174.tar.bz2
GN: Fix 'gn check' errors in //ash on Linux.
Review URL: https://codereview.chromium.org/433113004 Cr-Commit-Position: refs/heads/master@{#288764} git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288764 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--ash/BUILD.gn7
-rw-r--r--ash/system/tray/system_tray.cc1
2 files changed, 7 insertions, 1 deletions
diff --git a/ash/BUILD.gn b/ash/BUILD.gn
index defed0d..b49942e 100644
--- a/ash/BUILD.gn
+++ b/ash/BUILD.gn
@@ -169,11 +169,16 @@ static_library("test_support") {
deps = [
":ash",
"//ash/resources",
+ "//content/test:test_support",
"//skia",
"//testing/gtest",
"//ui/accessibility",
"//ui/app_list",
+ "//ui/app_list:test_support",
+ "//ui/events:events_base",
+ "//ui/gl",
"//ui/views",
+ "//ui/views:test_support",
]
if (is_win) {
@@ -205,6 +210,7 @@ static_library("ash_shell_lib") {
#"//chrome:packed_resources", TODO(GYP)
"//content",
"//content/shell:content_shell_lib",
+ "//net",
"//skia",
"//third_party/icu",
"//ui/app_list",
@@ -212,6 +218,7 @@ static_library("ash_shell_lib") {
"//ui/base",
"//ui/compositor",
"//ui/events",
+ "//ui/events:events_base",
"//ui/gfx",
"//ui/gfx/geometry",
"//ui/keyboard",
diff --git a/ash/system/tray/system_tray.cc b/ash/system/tray/system_tray.cc
index a28f784..9bd30a0 100644
--- a/ash/system/tray/system_tray.cc
+++ b/ash/system/tray/system_tray.cc
@@ -8,7 +8,6 @@
#include "ash/metrics/user_metrics_recorder.h"
#include "ash/shelf/shelf_layout_manager.h"
#include "ash/shell.h"
-#include "ash/shell/panel_window.h"
#include "ash/shell_window_ids.h"
#include "ash/system/audio/tray_audio.h"
#include "ash/system/bluetooth/tray_bluetooth.h"