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

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

Issue 735473002: Rename app_modal_dialogs dir to app_modal (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: rebase 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
« no previous file with comments | « components/app_modal_dialogs.gypi ('k') | components/app_modal_dialogs/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_queue.cc",
12 "app_modal_dialog_queue.h",
13 "app_modal_dialog_test_util.h",
14 "javascript_app_modal_dialog.cc",
15 "javascript_app_modal_dialog.h",
16 "javascript_dialog_extension_client.h",
17 "javascript_dialog_manager.cc",
18 "javascript_dialog_manager.h",
19 "javascript_dialog_manager_impl.cc",
20 "javascript_dialog_manager_impl.h",
21 "javascript_native_dialog_factory.h",
22 "native_app_modal_dialog.h"
23 ]
24
25 deps = [
26 "//components/strings",
27 "//content/public/browser",
28 "//content/public/common",
29 "//skia",
30 ]
31
32 if (use_aura) {
33 deps += [ "//ui/aura" ]
34 }
35
36 if (toolkit_views && !is_mac) {
37 sources += [
38 "views/javascript_app_modal_dialog_views.h",
39 "views/javascript_app_modal_dialog_views.cc",
40 ]
41 }
42 }
OLDNEW
« no previous file with comments | « components/app_modal_dialogs.gypi ('k') | components/app_modal_dialogs/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698