| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 'saved_files_service_factory.cc', | 67 'saved_files_service_factory.cc', |
| 68 'saved_files_service_factory.h', | 68 'saved_files_service_factory.h', |
| 69 'shell_window.cc', | 69 'shell_window.cc', |
| 70 'shell_window.h', | 70 'shell_window.h', |
| 71 'shell_window_geometry_cache.cc', | 71 'shell_window_geometry_cache.cc', |
| 72 'shell_window_geometry_cache.h', | 72 'shell_window_geometry_cache.h', |
| 73 'shell_window_registry.cc', | 73 'shell_window_registry.cc', |
| 74 'shell_window_registry.h', | 74 'shell_window_registry.h', |
| 75 'switches.cc', | 75 'switches.cc', |
| 76 'switches.h', | 76 'switches.h', |
| 77 'url_redirector.cc', |
| 78 'url_redirector.h', |
| 77 ], | 79 ], |
| 78 'conditions': [ | 80 'conditions': [ |
| 79 ['chromeos==1', | 81 ['chromeos==1', |
| 80 { | 82 { |
| 81 'dependencies': [ | 83 'dependencies': [ |
| 82 'browser_chromeos', | 84 'browser_chromeos', |
| 83 ] | 85 ] |
| 84 } | 86 } |
| 85 ], | 87 ], |
| 86 ['enable_extensions==0', | 88 ['enable_extensions==0', |
| 87 { | 89 { |
| 88 'sources/': [ | 90 'sources/': [ |
| 89 ['exclude', '^apps/'], | 91 ['exclude', '^apps/'], |
| 90 ], | 92 ], |
| 91 } | 93 } |
| 92 ], | 94 ], |
| 93 ], | 95 ], |
| 94 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 96 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 95 'msvs_disabled_warnings': [ 4267, ], | 97 'msvs_disabled_warnings': [ 4267, ], |
| 96 }, | 98 }, |
| 97 ], | 99 ], |
| 98 } | 100 } |
| OLD | NEW |