| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 { | 4 { |
| 5 'targets': [ | 5 'targets': [ |
| 6 { | 6 { |
| 7 'target_name': 'app_modal_dialogs', | 7 'target_name': 'app_modal_dialogs', |
| 8 'type': 'static_library', | 8 'type': 'static_library', |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 » '../skia/skia.gyp:skia', | 10 '../skia/skia.gyp:skia', |
| 11 '../content/content.gyp:content_browser', | 11 '../content/content.gyp:content_browser', |
| 12 '../content/content.gyp:content_common', |
| 12 'components_strings.gyp:components_strings', | 13 'components_strings.gyp:components_strings', |
| 13 ], | 14 ], |
| 14 'include_dirs': [ | 15 'include_dirs': [ |
| 15 '..', | 16 '..', |
| 16 ], | 17 ], |
| 17 'sources': [ | 18 'sources': [ |
| 18 'app_modal_dialogs/app_modal_dialog.cc', | 19 'app_modal_dialogs/app_modal_dialog.cc', |
| 19 'app_modal_dialogs/app_modal_dialog.h', | 20 'app_modal_dialogs/app_modal_dialog.h', |
| 20 'app_modal_dialogs/app_modal_dialog_test_util.h', | 21 'app_modal_dialogs/app_modal_dialog_test_util.h', |
| 21 'app_modal_dialogs/app_modal_dialog_queue.cc', | 22 'app_modal_dialogs/app_modal_dialog_queue.cc', |
| 22 'app_modal_dialogs/app_modal_dialog_queue.h', | 23 'app_modal_dialogs/app_modal_dialog_queue.h', |
| 23 'app_modal_dialogs/javascript_app_modal_dialog.cc', | 24 'app_modal_dialogs/javascript_app_modal_dialog.cc', |
| 24 'app_modal_dialogs/javascript_app_modal_dialog.h', | 25 'app_modal_dialogs/javascript_app_modal_dialog.h', |
| 26 'app_modal_dialogs/javascript_dialog_manager.cc', |
| 27 'app_modal_dialogs/javascript_dialog_manager.h', |
| 28 'app_modal_dialogs/javascript_dialog_manager_client.cc', |
| 29 'app_modal_dialogs/javascript_dialog_manager_client.h', |
| 25 'app_modal_dialogs/native_app_modal_dialog.h' | 30 'app_modal_dialogs/native_app_modal_dialog.h' |
| 26 ], | 31 ], |
| 27 'conditions': [ | 32 'conditions': [ |
| 28 ['use_aura==1',{ | 33 ['use_aura==1',{ |
| 29 'dependencies': [ | 34 'dependencies': [ |
| 30 '../ui/aura/aura.gyp:aura', | 35 '../ui/aura/aura.gyp:aura', |
| 31 ], | 36 ], |
| 32 }] | 37 }], |
| 38 ['toolkit_views==1 and OS != "mac"', { |
| 39 'sources': [ |
| 40 'app_modal_dialogs/views/javascript_app_modal_dialog_views.h', |
| 41 'app_modal_dialogs/views/javascript_app_modal_dialog_views.cc', |
| 42 ], |
| 43 }], |
| 33 ], | 44 ], |
| 34 }, | 45 }, |
| 35 ], | 46 ], |
| 36 } | 47 } |
| OLD | NEW |