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

Unified Diff: components/app_modal_dialogs.gypi

Issue 648833004: Componentize app_modal_dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 6 years, 2 months 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 side-by-side diff with in-line comments
Download patch
Index: components/app_modal_dialogs.gypi
diff --git a/components/app_modal_dialogs.gypi b/components/app_modal_dialogs.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..34aaef9a1ea7060592f1db316b9cd94775e5ff75
--- /dev/null
+++ b/components/app_modal_dialogs.gypi
@@ -0,0 +1,37 @@
+# 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.
+{
+ 'targets': [
+ {
+ 'target_name': 'app_modal_dialogs',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../skia/skia.gyp:skia',
+ '../content/content.gyp:content_browser',
+ '../content/content.gyp:content_common',
+ 'components_strings.gyp:components_strings',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'app_modal_dialogs/app_modal_dialog.cc',
+ 'app_modal_dialogs/app_modal_dialog.h',
+ 'app_modal_dialogs/app_modal_dialog_test_util.h',
+ 'app_modal_dialogs/app_modal_dialog_queue.cc',
+ 'app_modal_dialogs/app_modal_dialogs/app_modal_dialog_queue.h',
+ 'app_modal_dialogs/javascript_app_modal_dialog.cc',
+ 'app_modal_dialogs/javascript_app_modal_dialog.h',
+ 'app_modal_dialogs/native_app_modal_dialog.h'
+ ],
+ 'conditions': [
+ ['use_aura==1',{
+ 'dependencies': [
+ '../ui/aura/aura.gyp:aura',
+ ],
+ }]
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698