| Index: components/app_modal.gypi
|
| diff --git a/components/app_modal.gypi b/components/app_modal.gypi
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c2fe1fa072b97384392603b0c9c9f06c3bc1ccfa
|
| --- /dev/null
|
| +++ b/components/app_modal.gypi
|
| @@ -0,0 +1,48 @@
|
| +# Copyright 2014 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +{
|
| + 'targets': [
|
| + {
|
| + 'target_name': 'app_modal',
|
| + 'type': 'static_library',
|
| + 'dependencies': [
|
| + '../content/content.gyp:content_browser',
|
| + '../content/content.gyp:content_common',
|
| + '../skia/skia.gyp:skia',
|
| + 'components_strings.gyp:components_strings',
|
| + ],
|
| + 'include_dirs': [
|
| + '..',
|
| + ],
|
| + 'sources': [
|
| + 'app_modal/app_modal_dialog.cc',
|
| + 'app_modal/app_modal_dialog.h',
|
| + 'app_modal/app_modal_dialog_queue.cc',
|
| + 'app_modal/app_modal_dialog_queue.h',
|
| + 'app_modal/javascript_app_modal_dialog.cc',
|
| + 'app_modal/javascript_app_modal_dialog.h',
|
| + 'app_modal/javascript_dialog_extensions_client.h',
|
| + 'app_modal/javascript_dialog_manager.cc',
|
| + 'app_modal/javascript_dialog_manager.h',
|
| + 'app_modal/javascript_dialog_manager_impl.cc',
|
| + 'app_modal/javascript_dialog_manager_impl.h',
|
| + 'app_modal/javascript_native_dialog_factory.h',
|
| + 'app_modal/native_app_modal_dialog.h'
|
| + ],
|
| + 'conditions': [
|
| + ['use_aura==1',{
|
| + 'dependencies': [
|
| + '../ui/aura/aura.gyp:aura',
|
| + ],
|
| + }],
|
| + ['toolkit_views==1 and OS!="mac"', {
|
| + 'sources': [
|
| + 'app_modal/views/javascript_app_modal_dialog_views.h',
|
| + 'app_modal/views/javascript_app_modal_dialog_views.cc',
|
| + ],
|
| + }],
|
| + ],
|
| + },
|
| + ],
|
| +}
|
|
|