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', |
| 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 } |
OLD | NEW |