| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 '../components/components.gyp:safe_json_parser_message_filter', | 119 '../components/components.gyp:safe_json_parser_message_filter', |
| 120 '../components/components.gyp:search_engines', | 120 '../components/components.gyp:search_engines', |
| 121 '../components/url_formatter/url_formatter.gyp:url_formatter', | 121 '../components/url_formatter/url_formatter.gyp:url_formatter', |
| 122 '../content/content.gyp:content_common', | 122 '../content/content.gyp:content_common', |
| 123 '../content/content.gyp:content_utility', | 123 '../content/content.gyp:content_utility', |
| 124 '../media/media.gyp:media', | 124 '../media/media.gyp:media', |
| 125 '../skia/skia.gyp:skia', | 125 '../skia/skia.gyp:skia', |
| 126 '../third_party/libxml/libxml.gyp:libxml', | 126 '../third_party/libxml/libxml.gyp:libxml', |
| 127 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', | 127 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', |
| 128 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', | 128 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', |
| 129 'chrome_common_features', |
| 129 'common', | 130 'common', |
| 130 ], | 131 ], |
| 131 'include_dirs': [ | 132 'include_dirs': [ |
| 132 '..', | 133 '..', |
| 133 '<(grit_out_dir)', | 134 '<(grit_out_dir)', |
| 134 ], | 135 ], |
| 135 'sources': [ | 136 'sources': [ |
| 136 '<@(chrome_utility_sources)', | 137 '<@(chrome_utility_sources)', |
| 137 ], | 138 ], |
| 138 'conditions': [ | 139 'conditions': [ |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 }, | 224 }, |
| 224 }], | 225 }], |
| 225 ], | 226 ], |
| 226 }], | 227 }], |
| 227 ], | 228 ], |
| 228 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 229 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 229 'msvs_disabled_warnings': [ 4267, ], | 230 'msvs_disabled_warnings': [ 4267, ], |
| 230 }, | 231 }, |
| 231 ], | 232 ], |
| 232 } | 233 } |
| OLD | NEW |