| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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_renderer_sources': [ | 7 'chrome_renderer_sources': [ |
| 8 'renderer/benchmarking_extension.cc', | 8 'renderer/benchmarking_extension.cc', |
| 9 'renderer/benchmarking_extension.h', | 9 'renderer/benchmarking_extension.h', |
| 10 'renderer/extensions/chrome_extension_helper.cc', | 10 'renderer/extensions/chrome_extension_helper.cc', |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 '../third_party/re2/re2.gyp:re2', | 277 '../third_party/re2/re2.gyp:re2', |
| 278 '../components/components.gyp:autofill_content_renderer', | 278 '../components/components.gyp:autofill_content_renderer', |
| 279 '../components/components.gyp:cdm_renderer', | 279 '../components/components.gyp:cdm_renderer', |
| 280 '../components/components.gyp:data_reduction_proxy_common', | 280 '../components/components.gyp:data_reduction_proxy_common', |
| 281 '../components/components.gyp:startup_metric_utils', | 281 '../components/components.gyp:startup_metric_utils', |
| 282 '../components/components.gyp:plugins_renderer', | 282 '../components/components.gyp:plugins_renderer', |
| 283 '../components/components.gyp:translate_content_renderer', | 283 '../components/components.gyp:translate_content_renderer', |
| 284 '../components/components.gyp:translate_core_common', | 284 '../components/components.gyp:translate_core_common', |
| 285 '../components/components.gyp:translate_core_language_detection', | 285 '../components/components.gyp:translate_core_language_detection', |
| 286 '../components/components.gyp:visitedlink_renderer', | 286 '../components/components.gyp:visitedlink_renderer', |
| 287 '../content/app/resources/content_resources.gyp:content_resources', |
| 287 '../content/app/strings/content_strings.gyp:content_strings', | 288 '../content/app/strings/content_strings.gyp:content_strings', |
| 288 '../content/content.gyp:content_renderer', | 289 '../content/content.gyp:content_renderer', |
| 289 '../extensions/extensions.gyp:extensions_renderer', | 290 '../extensions/extensions.gyp:extensions_renderer', |
| 290 '../extensions/extensions_resources.gyp:extensions_resources', | 291 '../extensions/extensions_resources.gyp:extensions_resources', |
| 291 '../media/cast/cast.gyp:cast_logging_proto', | 292 '../media/cast/cast.gyp:cast_logging_proto', |
| 292 '../media/cast/cast.gyp:cast_net', | 293 '../media/cast/cast.gyp:cast_net', |
| 293 '../media/cast/cast.gyp:cast_sender', | 294 '../media/cast/cast.gyp:cast_sender', |
| 294 '../net/net.gyp:net', | 295 '../net/net.gyp:net', |
| 295 '../skia/skia.gyp:skia', | 296 '../skia/skia.gyp:skia', |
| 296 '../third_party/WebKit/public/blink.gyp:blink', | 297 '../third_party/WebKit/public/blink.gyp:blink', |
| 297 '../third_party/icu/icu.gyp:icui18n', | 298 '../third_party/icu/icu.gyp:icui18n', |
| 298 '../third_party/icu/icu.gyp:icuuc', | 299 '../third_party/icu/icu.gyp:icuuc', |
| 299 '../third_party/npapi/npapi.gyp:npapi', | 300 '../third_party/npapi/npapi.gyp:npapi', |
| 300 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', | 301 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', |
| 301 '../ui/surface/surface.gyp:surface', | 302 '../ui/surface/surface.gyp:surface', |
| 302 '../webkit/glue/resources/webkit_resources.gyp:webkit_resources', | |
| 303 ], | 303 ], |
| 304 'include_dirs': [ | 304 'include_dirs': [ |
| 305 '..', | 305 '..', |
| 306 # Needed by chrome_content_renderer_client.cc. | 306 # Needed by chrome_content_renderer_client.cc. |
| 307 '<(SHARED_INTERMEDIATE_DIR)', | 307 '<(SHARED_INTERMEDIATE_DIR)', |
| 308 ], | 308 ], |
| 309 'sources': [ | 309 'sources': [ |
| 310 '<@(chrome_renderer_sources)', | 310 '<@(chrome_renderer_sources)', |
| 311 ], | 311 ], |
| 312 'conditions': [ | 312 'conditions': [ |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 }], | 424 }], |
| 425 ['enable_printing!=0', { | 425 ['enable_printing!=0', { |
| 426 'dependencies': [ | 426 'dependencies': [ |
| 427 '../printing/printing.gyp:printing', | 427 '../printing/printing.gyp:printing', |
| 428 ], | 428 ], |
| 429 }], | 429 }], |
| 430 ], | 430 ], |
| 431 }, | 431 }, |
| 432 ], | 432 ], |
| 433 } | 433 } |
| OLD | NEW |