| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 assert(!is_ios) | |
| 6 | |
| 7 source_set("renderer") { | 5 source_set("renderer") { |
| 6 output_name = "framelet_renderer" |
| 8 sources = [ | 7 sources = [ |
| 9 "visitedlink_slave.cc", | 8 "framelet_container.cc", |
| 10 "visitedlink_slave.h", | 9 "framelet_container.h", |
| 11 ] | 10 ] |
| 12 | 11 |
| 13 deps = [ | 12 deps = [ |
| 14 "//base", | 13 "//base", |
| 15 "//components/visitedlink/common", | 14 "//components/framelet/common", |
| 15 "//components/guest_view/renderer", |
| 16 "//content/public/common", | 16 "//content/public/common", |
| 17 "//content/public/renderer", | 17 "//content/public/renderer", |
| 18 "//ipc", |
| 18 "//third_party/WebKit/public:blink", | 19 "//third_party/WebKit/public:blink", |
| 20 "//v8", |
| 19 ] | 21 ] |
| 20 } | 22 } |
| OLD | NEW |