Index: components/app_modal_dialogs/BUILD.gn |
diff --git a/components/app_modal_dialogs/BUILD.gn b/components/app_modal_dialogs/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..34d10af3c797f09b071ee30901f3f842f054d08e |
--- /dev/null |
+++ b/components/app_modal_dialogs/BUILD.gn |
@@ -0,0 +1,28 @@ |
+# Copyright 2014 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+import("//build/config/ui.gni") |
+ |
+static_library("app_modal_dialogs") { |
+ sources = [ |
+ "app_modal_dialog.cc", |
+ "app_modal_dialog.h", |
+ "app_modal_dialog_test_util.h", |
+ "app_modal_dialog_queue.cc", |
+ "app_modal_dialog_queue.h", |
+ "javascript_app_modal_dialog.cc", |
+ "javascript_app_modal_dialog.h", |
+ "native_app_modal_dialog.h" |
+ ] |
+ |
+ deps = [ |
+ "//components/strings", |
+ "//content/public/browser", |
+ "//skia", |
+ ] |
+ |
+ if (use_aura) { |
+ deps += [ "//ui/aura" ] |
+ } |
+} |