| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 'prefs.h', | 54 'prefs.h', |
| 55 'saved_files_service.cc', | 55 'saved_files_service.cc', |
| 56 'saved_files_service.h', | 56 'saved_files_service.h', |
| 57 'saved_files_service_factory.cc', | 57 'saved_files_service_factory.cc', |
| 58 'saved_files_service_factory.h', | 58 'saved_files_service_factory.h', |
| 59 'switches.cc', | 59 'switches.cc', |
| 60 'switches.h', | 60 'switches.h', |
| 61 'ui/native_app_window.h', | 61 'ui/native_app_window.h', |
| 62 'ui/views/app_window_frame_view.cc', | 62 'ui/views/app_window_frame_view.cc', |
| 63 'ui/views/app_window_frame_view.h', | 63 'ui/views/app_window_frame_view.h', |
| 64 'ui/views/base_native_app_window_views.cc', | 64 'ui/views/native_app_window_views.cc', |
| 65 'ui/views/base_native_app_window_views.h', | 65 'ui/views/native_app_window_views.h', |
| 66 ], | 66 ], |
| 67 'conditions': [ | 67 'conditions': [ |
| 68 ['chromeos==1', | 68 ['chromeos==1', |
| 69 { | 69 { |
| 70 'dependencies': [ | 70 'dependencies': [ |
| 71 'browser_chromeos', | 71 'browser_chromeos', |
| 72 ] | 72 ] |
| 73 } | 73 } |
| 74 ], | 74 ], |
| 75 ['enable_extensions==0', | 75 ['enable_extensions==0', |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 'dependencies': [ | 197 'dependencies': [ |
| 198 '../sandbox/sandbox.gyp:sandbox', | 198 '../sandbox/sandbox.gyp:sandbox', |
| 199 ], | 199 ], |
| 200 }], | 200 }], |
| 201 ], | 201 ], |
| 202 }, | 202 }, |
| 203 ], # targets | 203 ], # targets |
| 204 }], # chromeos==1 | 204 }], # chromeos==1 |
| 205 ], # conditions | 205 ], # conditions |
| 206 } | 206 } |
| OLD | NEW |