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

Unified Diff: ui/web_dialogs/web_dialogs.gyp

Issue 10448066: Move the web dialogs code to src/ui/web_dialogs from src/chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 7 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: ui/web_dialogs/web_dialogs.gyp
diff --git a/ui/web_dialogs/web_dialogs.gyp b/ui/web_dialogs/web_dialogs.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..494ffa6e1b894f091d66392c29761952867f7dac
--- /dev/null
+++ b/ui/web_dialogs/web_dialogs.gyp
@@ -0,0 +1,32 @@
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
tfarina 2012/05/30 19:16:19 btw, very nice and clean gyp file :) Yay.
mazda 2012/05/30 20:14:12 Thanks. :)
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'targets': [
+ {
+ 'target_name': 'web_dialogs',
+ 'type': '<(component)',
+ 'dependencies': [
+ '../../base/base.gyp:base',
+ '../../skia/skia.gyp:skia',
+ ],
+ 'defines': [
+ 'WEB_DIALOGS_IMPLEMENTATION',
+ ],
+ 'sources': [
+ # All .cc, .h under web_dialogs, except unittests
tfarina 2012/05/30 19:16:19 nit: end with period. Yeah, I know we have all the
mazda 2012/05/30 20:14:12 Done.
+ 'constrained_web_dialog_ui.cc',
+ 'constrained_web_dialog_ui.h',
+ 'web_dialog_delegate.h',
+ 'web_dialog_observer.h',
+ 'web_dialog_ui.cc',
+ 'web_dialog_ui.h',
+ 'web_dialogs_export.h',
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698