Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # 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. :)
| |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'variables': { | |
| 7 'chromium_code': 1, | |
| 8 }, | |
| 9 'targets': [ | |
| 10 { | |
| 11 'target_name': 'web_dialogs', | |
| 12 'type': '<(component)', | |
| 13 'dependencies': [ | |
| 14 '../../base/base.gyp:base', | |
| 15 '../../skia/skia.gyp:skia', | |
| 16 ], | |
| 17 'defines': [ | |
| 18 'WEB_DIALOGS_IMPLEMENTATION', | |
| 19 ], | |
| 20 'sources': [ | |
| 21 # 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.
| |
| 22 'constrained_web_dialog_ui.cc', | |
| 23 'constrained_web_dialog_ui.h', | |
| 24 'web_dialog_delegate.h', | |
| 25 'web_dialog_observer.h', | |
| 26 'web_dialog_ui.cc', | |
| 27 'web_dialog_ui.h', | |
| 28 'web_dialogs_export.h', | |
| 29 ], | |
| 30 }, | |
| 31 ], | |
| 32 } | |
| OLD | NEW |