
This includes a couple of other method name updates as well. R=wittman@chromium.org Review URL: https://codereview.chromium.org/231173004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263866 0039d316-1c4b-4281-b951-d872f2087c98
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
# Copyright (c) 2013 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': 'web_modal',
|
|
'type': 'static_library',
|
|
'include_dirs': [
|
|
'..',
|
|
],
|
|
'dependencies': [
|
|
'../base/base.gyp:base',
|
|
'../content/content.gyp:content_browser',
|
|
'../skia/skia.gyp:skia',
|
|
],
|
|
'defines': [
|
|
'WEB_MODAL_IMPLEMENTATION',
|
|
],
|
|
'sources': [
|
|
'web_modal/modal_dialog_host.cc',
|
|
'web_modal/modal_dialog_host.h',
|
|
'web_modal/native_web_contents_modal_dialog.h',
|
|
'web_modal/single_web_contents_dialog_manager.h',
|
|
'web_modal/web_contents_modal_dialog_host.cc',
|
|
'web_modal/web_contents_modal_dialog_host.h',
|
|
'web_modal/web_contents_modal_dialog_manager.cc',
|
|
'web_modal/web_contents_modal_dialog_manager.h',
|
|
'web_modal/web_contents_modal_dialog_manager_delegate.cc',
|
|
'web_modal/web_contents_modal_dialog_manager_delegate.h',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'web_modal_test_support',
|
|
'type': 'static_library',
|
|
'dependencies': [
|
|
'web_modal',
|
|
],
|
|
'sources': [
|
|
'web_modal/test_web_contents_modal_dialog_host.cc',
|
|
'web_modal/test_web_contents_modal_dialog_host.h',
|
|
'web_modal/test_web_contents_modal_dialog_manager_delegate.cc',
|
|
'web_modal/test_web_contents_modal_dialog_manager_delegate.h',
|
|
],
|
|
},
|
|
],
|
|
}
|