| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 'prefs.h', | 58 'prefs.h', |
| 59 'saved_files_service.cc', | 59 'saved_files_service.cc', |
| 60 'saved_files_service.h', | 60 'saved_files_service.h', |
| 61 'saved_files_service_factory.cc', | 61 'saved_files_service_factory.cc', |
| 62 'saved_files_service_factory.h', | 62 'saved_files_service_factory.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/app_window_frame_view.cc', | 66 'ui/views/app_window_frame_view.cc', |
| 67 'ui/views/app_window_frame_view.h', | 67 'ui/views/app_window_frame_view.h', |
| 68 'ui/views/native_app_window_views.cc', |
| 69 'ui/views/native_app_window_views.h', |
| 70 'ui/views/shaped_app_window_targeter.cc', |
| 71 'ui/views/shaped_app_window_targeter.h', |
| 68 ], | 72 ], |
| 69 'conditions': [ | 73 'conditions': [ |
| 70 ['chromeos==1', | 74 ['chromeos==1', |
| 71 { | 75 { |
| 72 'dependencies': [ | 76 'dependencies': [ |
| 73 'browser_chromeos', | 77 'browser_chromeos', |
| 74 ] | 78 ] |
| 75 } | 79 } |
| 76 ], | 80 ], |
| 77 ['enable_extensions==0', | 81 ['enable_extensions==0', |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 'dependencies': [ | 164 'dependencies': [ |
| 161 '../sandbox/sandbox.gyp:sandbox', | 165 '../sandbox/sandbox.gyp:sandbox', |
| 162 ], | 166 ], |
| 163 }], | 167 }], |
| 164 ], | 168 ], |
| 165 }, | 169 }, |
| 166 ], # targets | 170 ], # targets |
| 167 }], # chromeos==1 | 171 }], # chromeos==1 |
| 168 ], # conditions | 172 ], # conditions |
| 169 } | 173 } |
| OLD | NEW |