| OLD | NEW |
| (Empty) | |
| 1 # Copyright (c) 2012 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 'variables': { |
| 6 'chromium_code': 1, |
| 7 }, |
| 8 |
| 9 'target_defaults': { |
| 10 }, |
| 11 'targets': [ |
| 12 { |
| 13 'target_name': 'web_dialogs', |
| 14 'type': '<(component)', |
| 15 'dependencies': [ |
| 16 '../../base/base.gyp:base', |
| 17 '../../base/base.gyp:base_i18n', |
| 18 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
| 19 '../../build/temp_gyp/googleurl.gyp:googleurl', |
| 20 '../../content/content.gyp:content', |
| 21 '../../net/net.gyp:net', |
| 22 '../../skia/skia.gyp:skia', |
| 23 '../../third_party/icu/icu.gyp:icui18n', |
| 24 '../../third_party/icu/icu.gyp:icuuc', |
| 25 '../base/strings/ui_strings.gyp:ui_strings', |
| 26 '../gfx/compositor/compositor.gyp:compositor', |
| 27 '../ui.gyp:ui', |
| 28 '../ui.gyp:ui_resources', |
| 29 '../ui.gyp:ui_resources_standard', |
| 30 ], |
| 31 'defines': [ |
| 32 'WEB_DIALOGS_IMPLEMENTATION', |
| 33 ], |
| 34 'sources': [ |
| 35 # All .cc, .h under web_dialogs |
| 36 'web_dialog_delegate.h', |
| 37 'web_dialogs_export.h', |
| 38 'web_dialog_notification_types.h', |
| 39 'web_dialog_ui.h', |
| 40 'web_dialog_ui.cc', |
| 41 'web_dialog_web_contents_delegate.h', |
| 42 'web_dialog_web_contents_delegate.cc', |
| 43 ], |
| 44 'include_dirs': [ |
| 45 '../../third_party/wtl/include', |
| 46 ], |
| 47 }, # target_name: web_dialogs |
| 48 ], |
| 49 } |
| OLD | NEW |