OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'shell_dialogs', | 8 'target_name': 'shell_dialogs', |
9 'type': '<(component)', | 9 'type': '<(component)', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 10 matching lines...) Expand all Loading... |
21 'shell_dialogs/android/shell_dialogs_jni_registrar.cc', | 21 'shell_dialogs/android/shell_dialogs_jni_registrar.cc', |
22 'shell_dialogs/android/shell_dialogs_jni_registrar.h', | 22 'shell_dialogs/android/shell_dialogs_jni_registrar.h', |
23 'shell_dialogs/base_shell_dialog.cc', | 23 'shell_dialogs/base_shell_dialog.cc', |
24 'shell_dialogs/base_shell_dialog.h', | 24 'shell_dialogs/base_shell_dialog.h', |
25 'shell_dialogs/base_shell_dialog_win.cc', | 25 'shell_dialogs/base_shell_dialog_win.cc', |
26 'shell_dialogs/base_shell_dialog_win.h', | 26 'shell_dialogs/base_shell_dialog_win.h', |
27 'shell_dialogs/gtk/select_file_dialog_impl.cc', | 27 'shell_dialogs/gtk/select_file_dialog_impl.cc', |
28 'shell_dialogs/gtk/select_file_dialog_impl.h', | 28 'shell_dialogs/gtk/select_file_dialog_impl.h', |
29 'shell_dialogs/gtk/select_file_dialog_impl_gtk.cc', | 29 'shell_dialogs/gtk/select_file_dialog_impl_gtk.cc', |
30 'shell_dialogs/gtk/select_file_dialog_impl_kde.cc', | 30 'shell_dialogs/gtk/select_file_dialog_impl_kde.cc', |
31 'shell_dialogs/linux_ui_shell_dialog.h', | 31 'shell_dialogs/linux_shell_dialog.cc', |
| 32 'shell_dialogs/linux_shell_dialog.h', |
32 'shell_dialogs/select_file_dialog.cc', | 33 'shell_dialogs/select_file_dialog.cc', |
33 'shell_dialogs/select_file_dialog.h', | 34 'shell_dialogs/select_file_dialog.h', |
34 'shell_dialogs/select_file_dialog_android.cc', | 35 'shell_dialogs/select_file_dialog_android.cc', |
35 'shell_dialogs/select_file_dialog_android.h', | 36 'shell_dialogs/select_file_dialog_android.h', |
36 'shell_dialogs/select_file_dialog_factory.cc', | 37 'shell_dialogs/select_file_dialog_factory.cc', |
37 'shell_dialogs/select_file_dialog_factory.h', | 38 'shell_dialogs/select_file_dialog_factory.h', |
38 'shell_dialogs/select_file_dialog_mac.h', | 39 'shell_dialogs/select_file_dialog_mac.h', |
39 'shell_dialogs/select_file_dialog_mac.mm', | 40 'shell_dialogs/select_file_dialog_mac.mm', |
40 'shell_dialogs/select_file_dialog_win.cc', | 41 'shell_dialogs/select_file_dialog_win.cc', |
41 'shell_dialogs/select_file_dialog_win.h', | 42 'shell_dialogs/select_file_dialog_win.h', |
(...skipping 29 matching lines...) Expand all Loading... |
71 }], | 72 }], |
72 ['OS=="android" and android_build_type==0', { | 73 ['OS=="android" and android_build_type==0', { |
73 'dependencies': [ | 74 'dependencies': [ |
74 'ui_java', | 75 'ui_java', |
75 ], | 76 ], |
76 }], | 77 }], |
77 ], | 78 ], |
78 }, # target_name: shell_dialogs | 79 }, # target_name: shell_dialogs |
79 ], | 80 ], |
80 } | 81 } |
OLD | NEW |