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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 ], | 93 ], |
94 ['enable_extensions==0', | 94 ['enable_extensions==0', |
95 { | 95 { |
96 'sources/': [ | 96 'sources/': [ |
97 ['exclude', '^apps/'], | 97 ['exclude', '^apps/'], |
98 ], | 98 ], |
99 } | 99 } |
100 ], | 100 ], |
101 ['toolkit_views==1', { | 101 ['toolkit_views==1', { |
102 'dependencies': [ | 102 'dependencies': [ |
103 '../ui/base/strings/ui_strings.gyp:ui_strings', | 103 '../ui/strings/ui_strings.gyp:ui_strings', |
104 '../ui/views/views.gyp:views', | 104 '../ui/views/views.gyp:views', |
105 ], | 105 ], |
106 }, { # toolkit_views==0 | 106 }, { # toolkit_views==0 |
107 'sources/': [ | 107 'sources/': [ |
108 ['exclude', 'ui/views/'], | 108 ['exclude', 'ui/views/'], |
109 ], | 109 ], |
110 }], | 110 }], |
111 ], | 111 ], |
112 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 112 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
113 'msvs_disabled_warnings': [ 4267, ], | 113 'msvs_disabled_warnings': [ 4267, ], |
114 }, | 114 }, |
115 ], # targets | 115 ], # targets |
116 } | 116 } |
OLD | NEW |