Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(258)

Side by Side Diff: components/app_modal_dialogs/BUILD.gn

Issue 648833004: Componentize app_modal_dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//build/config/ui.gni")
6
7 static_library("app_modal_dialogs") {
8 sources = [
9 "app_modal_dialog.cc",
10 "app_modal_dialog.h",
11 "app_modal_dialog_test_util.h",
12 "app_modal_dialog_queue.cc",
13 "app_modal_dialog_queue.h",
14 "javascript_app_modal_dialog.cc",
15 "javascript_app_modal_dialog.h",
16 "native_app_modal_dialog.h"
17 ]
18
19 deps = [
20 "//components/strings",
21 "//content/public/browser",
22 "//skia",
23 ]
24
25 if (use_aura) {
26 deps += [ "//ui/aura" ]
27 }
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698