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

Side by Side Diff: ui/web_dialogs/web_dialogs.gyp

Issue 10353007: Extract a minimal subset of WebDialogUI/WebDialogDelegate from src/chrome -> src/ui/web_dialogs Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698