| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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:safe_json_parser_message_filter', | 106 '../components/components.gyp:safe_json_parser_message_filter', |
| 107 '../components/components.gyp:search_engines', | 107 '../components/components.gyp:search_engines', |
| 108 '../components/url_formatter/url_formatter.gyp:url_formatter', | 108 '../components/components.gyp:url_fixer', |
| 109 '../content/content.gyp:content_common', | 109 '../content/content.gyp:content_common', |
| 110 '../content/content.gyp:content_utility', | 110 '../content/content.gyp:content_utility', |
| 111 '../media/media.gyp:media', | 111 '../media/media.gyp:media', |
| 112 '../skia/skia.gyp:skia', | 112 '../skia/skia.gyp:skia', |
| 113 '../third_party/libxml/libxml.gyp:libxml', | 113 '../third_party/libxml/libxml.gyp:libxml', |
| 114 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', | 114 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
| 115 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', | 115 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', |
| 116 'common', | 116 'common', |
| 117 ], | 117 ], |
| 118 'include_dirs': [ | 118 'include_dirs': [ |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 'utility/local_discovery/service_discovery_message_handler.cc', | 198 'utility/local_discovery/service_discovery_message_handler.cc', |
| 199 'utility/local_discovery/service_discovery_message_handler.h', | 199 'utility/local_discovery/service_discovery_message_handler.h', |
| 200 ] | 200 ] |
| 201 }], | 201 }], |
| 202 ], | 202 ], |
| 203 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 203 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 204 'msvs_disabled_warnings': [ 4267, ], | 204 'msvs_disabled_warnings': [ 4267, ], |
| 205 }, | 205 }, |
| 206 ], | 206 ], |
| 207 } | 207 } |
| OLD | NEW |