| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 'saved_files_service_factory.h', | 65 'saved_files_service_factory.h', |
| 66 'size_constraints.cc', | 66 'size_constraints.cc', |
| 67 'size_constraints.h', | 67 'size_constraints.h', |
| 68 'switches.cc', | 68 'switches.cc', |
| 69 'switches.h', | 69 'switches.h', |
| 70 'ui/native_app_window.h', | 70 'ui/native_app_window.h', |
| 71 'ui/views/app_window_frame_view.cc', | 71 'ui/views/app_window_frame_view.cc', |
| 72 'ui/views/app_window_frame_view.h', | 72 'ui/views/app_window_frame_view.h', |
| 73 'ui/views/native_app_window_views.cc', | 73 'ui/views/native_app_window_views.cc', |
| 74 'ui/views/native_app_window_views.h', | 74 'ui/views/native_app_window_views.h', |
| 75 'ui/web_contents_sizer.h', |
| 75 ], | 76 ], |
| 76 'conditions': [ | 77 'conditions': [ |
| 78 ['OS=="mac"', { |
| 79 'sources': [ |
| 80 'ui/web_contents_sizer.mm', |
| 81 ], |
| 82 }, { # OS!=mac |
| 83 'sources': [ |
| 84 'ui/web_contents_sizer.cc', |
| 85 ], |
| 86 }], |
| 77 ['chromeos==1', | 87 ['chromeos==1', |
| 78 { | 88 { |
| 79 'dependencies': [ | 89 'dependencies': [ |
| 80 'browser_chromeos', | 90 'browser_chromeos', |
| 81 ] | 91 ] |
| 82 } | 92 } |
| 83 ], | 93 ], |
| 84 ['enable_extensions==0', | 94 ['enable_extensions==0', |
| 85 { | 95 { |
| 86 'sources/': [ | 96 'sources/': [ |
| (...skipping 10 matching lines...) Expand all Loading... |
| 97 'sources/': [ | 107 'sources/': [ |
| 98 ['exclude', 'ui/views/'], | 108 ['exclude', 'ui/views/'], |
| 99 ], | 109 ], |
| 100 }], | 110 }], |
| 101 ], | 111 ], |
| 102 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 112 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 103 'msvs_disabled_warnings': [ 4267, ], | 113 'msvs_disabled_warnings': [ 4267, ], |
| 104 }, | 114 }, |
| 105 ], # targets | 115 ], # targets |
| 106 } | 116 } |
| OLD | NEW |