Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 source_set("web_ui") { | |
|
Devlin
2017/06/12 15:20:20
This one can actually stay. :) It has no dependen
karandeepb
2017/06/12 21:10:49
Done.
| |
| 6 sources = [ | |
| 7 "web_ui_url_fetcher.cc", | |
| 8 "web_ui_url_fetcher.h", | |
| 9 ] | |
| 10 public_deps = [ | |
| 11 "//base", | |
| 12 "//net", | |
| 13 "//url", | |
| 14 ] | |
| 15 } | |
| OLD | NEW |