OLD | NEW |
---|---|
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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': 'apps', | 8 'target_name': 'apps', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
47 'launcher.h', | 47 'launcher.h', |
48 'metrics_names.h', | 48 'metrics_names.h', |
49 'pref_names.cc', | 49 'pref_names.cc', |
50 'pref_names.h', | 50 'pref_names.h', |
51 'prefs.cc', | 51 'prefs.cc', |
52 'prefs.h', | 52 'prefs.h', |
53 'saved_files_service.cc', | 53 'saved_files_service.cc', |
54 'saved_files_service.h', | 54 'saved_files_service.h', |
55 'saved_files_service_factory.cc', | 55 'saved_files_service_factory.cc', |
56 'saved_files_service_factory.h', | 56 'saved_files_service_factory.h', |
57 'shell_window.cc', | 57 'app_window.cc', |
scheib
2014/02/15 00:02:15
sort
| |
58 'shell_window.h', | 58 'app_window.h', |
59 'shell_window_geometry_cache.cc', | 59 'app_window_geometry_cache.cc', |
60 'shell_window_geometry_cache.h', | 60 'app_window_geometry_cache.h', |
61 'shell_window_registry.cc', | 61 'app_window_registry.cc', |
62 'shell_window_registry.h', | 62 'app_window_registry.h', |
63 'switches.cc', | 63 'switches.cc', |
64 'switches.h', | 64 'switches.h', |
65 'ui/native_app_window.h', | 65 'ui/native_app_window.h', |
66 'ui/views/shell_window_frame_view.cc', | 66 'ui/views/app_window_frame_view.cc', |
67 'ui/views/shell_window_frame_view.h', | 67 'ui/views/app_window_frame_view.h', |
68 ], | 68 ], |
69 'conditions': [ | 69 'conditions': [ |
70 ['chromeos==1', | 70 ['chromeos==1', |
71 { | 71 { |
72 'dependencies': [ | 72 'dependencies': [ |
73 'browser_chromeos', | 73 'browser_chromeos', |
74 ] | 74 ] |
75 } | 75 } |
76 ], | 76 ], |
77 ['enable_extensions==0', | 77 ['enable_extensions==0', |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
160 'dependencies': [ | 160 'dependencies': [ |
161 '../sandbox/sandbox.gyp:sandbox', | 161 '../sandbox/sandbox.gyp:sandbox', |
162 ], | 162 ], |
163 }], | 163 }], |
164 ], | 164 ], |
165 }, | 165 }, |
166 ], # targets | 166 ], # targets |
167 }], # chromeos==1 | 167 }], # chromeos==1 |
168 ], # conditions | 168 ], # conditions |
169 } | 169 } |
OLD | NEW |