Chromium Code Reviews| 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', |
| + ], |
| + }, |
| + ], |
| +} |