| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'variables': { | 6 'variables': { |
| 7 'chrome_utility_sources': [ | 7 'chrome_utility_sources': [ |
| 8 'utility/chrome_content_utility_client.cc', | 8 'utility/chrome_content_utility_client.cc', |
| 9 'utility/chrome_content_utility_client.h', | 9 'utility/chrome_content_utility_client.h', |
| 10 'utility/chrome_content_utility_ipc_whitelist.cc', | 10 'utility/chrome_content_utility_ipc_whitelist.cc', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 }, | 96 }, |
| 97 'targets': [ | 97 'targets': [ |
| 98 { | 98 { |
| 99 # GN version: //chrome/utility | 99 # GN version: //chrome/utility |
| 100 'target_name': 'utility', | 100 'target_name': 'utility', |
| 101 'type': 'static_library', | 101 'type': 'static_library', |
| 102 'variables': { 'enable_wexit_time_destructors': 1, }, | 102 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 103 'dependencies': [ | 103 'dependencies': [ |
| 104 '../base/base.gyp:base', | 104 '../base/base.gyp:base', |
| 105 '../components/components_strings.gyp:components_strings', | 105 '../components/components_strings.gyp:components_strings', |
| 106 '../components/components.gyp:search_engines', |
| 106 '../components/components.gyp:url_fixer', | 107 '../components/components.gyp:url_fixer', |
| 107 '../content/content.gyp:content_common', | 108 '../content/content.gyp:content_common', |
| 108 '../content/content.gyp:content_utility', | 109 '../content/content.gyp:content_utility', |
| 109 '../media/media.gyp:media', | 110 '../media/media.gyp:media', |
| 110 '../skia/skia.gyp:skia', | 111 '../skia/skia.gyp:skia', |
| 111 '../third_party/libxml/libxml.gyp:libxml', | 112 '../third_party/libxml/libxml.gyp:libxml', |
| 112 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', | 113 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
| 113 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', | 114 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', |
| 114 'common', | 115 'common', |
| 115 ], | 116 ], |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 }], | 188 }], |
| 188 ['safe_browsing==1', { | 189 ['safe_browsing==1', { |
| 189 'defines': [ 'FULL_SAFE_BROWSING' ], | 190 'defines': [ 'FULL_SAFE_BROWSING' ], |
| 190 }], | 191 }], |
| 191 ], | 192 ], |
| 192 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 193 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 193 'msvs_disabled_warnings': [ 4267, ], | 194 'msvs_disabled_warnings': [ 4267, ], |
| 194 }, | 195 }, |
| 195 ], | 196 ], |
| 196 } | 197 } |
| OLD | NEW |