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

Side by Side Diff: components/app_modal_dialogs.gypi

Issue 648833004: Componentize app_modal_dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 6 years, 2 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
OLDNEW
(Empty)
1 # Copyright 2014 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 'targets': [
6 {
7 'target_name': 'app_modal_dialogs',
8 'type': 'static_library',
9 'dependencies': [
10 '../skia/skia.gyp:skia',
11 '../content/content.gyp:content_browser',
12 '../content/content.gyp:content_common',
13 'components_strings.gyp:components_strings',
14 ],
15 'include_dirs': [
16 '..',
17 ],
18 'sources': [
19 'app_modal_dialogs/app_modal_dialog.cc',
20 'app_modal_dialogs/app_modal_dialog.h',
21 'app_modal_dialogs/app_modal_dialog_test_util.h',
22 'app_modal_dialogs/app_modal_dialog_queue.cc',
23 'app_modal_dialogs/app_modal_dialogs/app_modal_dialog_queue.h',
24 'app_modal_dialogs/javascript_app_modal_dialog.cc',
25 'app_modal_dialogs/javascript_app_modal_dialog.h',
26 'app_modal_dialogs/native_app_modal_dialog.h'
27 ],
28 'conditions': [
29 ['use_aura==1',{
30 'dependencies': [
31 '../ui/aura/aura.gyp:aura',
32 ],
33 }]
34 ],
35 },
36 ],
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698