| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 'saved_files_service_factory.cc', | 63 'saved_files_service_factory.cc', |
| 64 'saved_files_service_factory.h', | 64 'saved_files_service_factory.h', |
| 65 'shell_window.cc', | 65 'shell_window.cc', |
| 66 'shell_window.h', | 66 'shell_window.h', |
| 67 'shell_window_geometry_cache.cc', | 67 'shell_window_geometry_cache.cc', |
| 68 'shell_window_geometry_cache.h', | 68 'shell_window_geometry_cache.h', |
| 69 'shell_window_registry.cc', | 69 'shell_window_registry.cc', |
| 70 'shell_window_registry.h', | 70 'shell_window_registry.h', |
| 71 'switches.cc', | 71 'switches.cc', |
| 72 'switches.h', | 72 'switches.h', |
| 73 'ui/views/shell_window_frame_view.cc', |
| 74 'ui/views/shell_window_frame_view.h', |
| 73 ], | 75 ], |
| 74 'conditions': [ | 76 'conditions': [ |
| 75 ['chromeos==1', | 77 ['chromeos==1', |
| 76 { | 78 { |
| 77 'dependencies': [ | 79 'dependencies': [ |
| 78 'browser_chromeos', | 80 'browser_chromeos', |
| 79 ] | 81 ] |
| 80 } | 82 } |
| 81 ], | 83 ], |
| 82 ['enable_extensions==0', | 84 ['enable_extensions==0', |
| 83 { | 85 { |
| 84 'sources/': [ | 86 'sources/': [ |
| 85 ['exclude', '^apps/'], | 87 ['exclude', '^apps/'], |
| 86 ], | 88 ], |
| 87 } | 89 } |
| 88 ], | 90 ], |
| 91 ['toolkit_views==1', { |
| 92 'dependencies': [ |
| 93 '../ui/base/strings/ui_strings.gyp:ui_strings', |
| 94 '../ui/views/views.gyp:views', |
| 95 ], |
| 96 }, { # toolkit_views==0 |
| 97 'sources/': [ |
| 98 ['exclude', 'ui/views/'], |
| 99 ], |
| 100 }], |
| 89 ], | 101 ], |
| 90 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 102 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 91 'msvs_disabled_warnings': [ 4267, ], | 103 'msvs_disabled_warnings': [ 4267, ], |
| 92 }, | 104 }, |
| 93 ], # targets | 105 ], # targets |
| 94 'conditions': [ | 106 'conditions': [ |
| 95 ['chromeos==1', { | 107 ['chromeos==1', { |
| 96 'targets': [ | 108 'targets': [ |
| 97 { | 109 { |
| 98 'target_name': 'app_shell', | 110 'target_name': 'app_shell', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 124 'shell/app_shell_main_delegate.h', | 136 'shell/app_shell_main_delegate.h', |
| 125 'shell/app_shell_main.cc', | 137 'shell/app_shell_main.cc', |
| 126 'shell/web_view_window.cc', | 138 'shell/web_view_window.cc', |
| 127 'shell/web_view_window.cc', | 139 'shell/web_view_window.cc', |
| 128 ], | 140 ], |
| 129 }, | 141 }, |
| 130 ], # targets | 142 ], # targets |
| 131 }], # chromeos==1 | 143 }], # chromeos==1 |
| 132 ], # conditions | 144 ], # conditions |
| 133 } | 145 } |
| OLD | NEW |