OLD | NEW |
---|---|
(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', | |
msw
2014/10/22 22:53:32
nit: fix indent on this line and the line below.
oshima
2014/10/23 00:44:12
indent looks correct?
msw
2014/10/23 18:41:21
Sorry... I'm losing it!
| |
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', | |
msw
2014/10/22 22:53:32
Remove one of the app_modal_dialogs dir mentions..
oshima
2014/10/23 00:44:12
Done.
| |
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 } | |
OLD | NEW |