| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//extensions/features/features.gni") |
| 6 |
| 7 assert(enable_extensions, |
| 8 "Cannot depend on extensions because enable_extensions=false.") |
| 9 |
| 5 source_set("web_ui") { | 10 source_set("web_ui") { |
| 6 sources = [ | 11 sources = [ |
| 7 "web_ui_url_fetcher.cc", | 12 "web_ui_url_fetcher.cc", |
| 8 "web_ui_url_fetcher.h", | 13 "web_ui_url_fetcher.h", |
| 9 ] | 14 ] |
| 10 public_deps = [ | 15 public_deps = [ |
| 11 "//base", | 16 "//base", |
| 12 "//net", | 17 "//net", |
| 13 "//url", | 18 "//url", |
| 14 ] | 19 ] |
| 15 } | 20 } |
| OLD | NEW |