| 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") | 
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") | 
| 7 import("//media/media_options.gni") | 7 import("//media/media_options.gni") | 
| 8 import("//ppapi/features/features.gni") |  | 
| 9 import("//third_party/webrtc/build/webrtc.gni") | 8 import("//third_party/webrtc/build/webrtc.gni") | 
| 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 
| 11 | 10 | 
| 12 if (is_component_build) { | 11 if (is_component_build) { | 
| 13   link_target_type = "source_set" | 12   link_target_type = "source_set" | 
| 14 } else { | 13 } else { | 
| 15   link_target_type = "static_library" | 14   link_target_type = "static_library" | 
| 16 } | 15 } | 
| 17 target(link_target_type, "renderer") { | 16 target(link_target_type, "renderer") { | 
| 18   # Only the public target should depend on this. All other targets (even | 17   # Only the public target should depend on this. All other targets (even | 
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 431     "//media/gpu", | 430     "//media/gpu", | 
| 432     "//media/gpu/ipc/client", | 431     "//media/gpu/ipc/client", | 
| 433     "//media/gpu/ipc/common", | 432     "//media/gpu/ipc/common", | 
| 434     "//media/midi", | 433     "//media/midi", | 
| 435     "//media/mojo/interfaces:remoting", | 434     "//media/mojo/interfaces:remoting", | 
| 436     "//mojo/common", | 435     "//mojo/common", | 
| 437     "//mojo/edk/js", | 436     "//mojo/edk/js", | 
| 438     "//mojo/public/cpp/bindings", | 437     "//mojo/public/cpp/bindings", | 
| 439     "//mojo/public/js", | 438     "//mojo/public/js", | 
| 440     "//net", | 439     "//net", | 
| 441     "//ppapi/features", |  | 
| 442     "//sandbox", | 440     "//sandbox", | 
| 443     "//services/shell/public/cpp", | 441     "//services/shell/public/cpp", | 
| 444     "//services/shell/public/interfaces", | 442     "//services/shell/public/interfaces", | 
| 445     "//skia", | 443     "//skia", | 
| 446     "//storage/common", | 444     "//storage/common", | 
| 447     "//third_party/WebKit/public:blink", | 445     "//third_party/WebKit/public:blink", | 
| 448     "//third_party/WebKit/public:mojo_bindings", | 446     "//third_party/WebKit/public:mojo_bindings", | 
| 449     "//third_party/boringssl", | 447     "//third_party/boringssl", | 
| 450     "//third_party/icu", | 448     "//third_party/icu", | 
| 451     "//third_party/libjingle", | 449     "//third_party/libjingle", | 
| 452     "//third_party/libyuv", | 450     "//third_party/libyuv", | 
| 453     "//third_party/widevine/cdm:headers", | 451     "//third_party/widevine/cdm:version_h", | 
| 454     "//ui/accessibility", | 452     "//ui/accessibility", | 
| 455     "//ui/base", | 453     "//ui/base", | 
| 456     "//ui/base/ime", | 454     "//ui/base/ime", | 
| 457     "//ui/display", | 455     "//ui/display", | 
| 458     "//ui/events:dom_keycode_converter", | 456     "//ui/events:dom_keycode_converter", | 
| 459     "//ui/events:events_base", | 457     "//ui/events:events_base", | 
| 460     "//ui/events/blink", | 458     "//ui/events/blink", | 
| 461     "//ui/gfx/geometry/mojo", | 459     "//ui/gfx/geometry/mojo", | 
| 462     "//ui/gl", | 460     "//ui/gl", | 
| 463     "//ui/native_theme", | 461     "//ui/native_theme", | 
| (...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 902     # For the defines in mojo_media_config. | 900     # For the defines in mojo_media_config. | 
| 903     public_configs = [ "//media/mojo/services:mojo_media_config" ] | 901     public_configs = [ "//media/mojo/services:mojo_media_config" ] | 
| 904   } | 902   } | 
| 905 | 903 | 
| 906   if (!is_component_build) { | 904   if (!is_component_build) { | 
| 907     public_deps = [ | 905     public_deps = [ | 
| 908       ":renderer", | 906       ":renderer", | 
| 909     ] | 907     ] | 
| 910   } | 908   } | 
| 911 } | 909 } | 
| OLD | NEW | 
|---|