Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright (c) 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 import("//testing/test.gni") | |
| 6 | |
| 7 source_set("url_ipc") { | |
| 8 sources = [ | |
| 9 "url_param_traits.cc", | |
| 10 "url_param_traits.h", | |
| 11 ] | |
|
brettw
2016/02/22 22:07:15
This should depend on "//url" and "//ipc",
Mark Dittmer
2016/02/23 15:13:54
Done.
| |
| 12 } | |
| 13 | |
| 14 test("url_ipc_unittests") { | |
| 15 sources = [ | |
| 16 "url_param_traits_unittest.cc", | |
|
brettw
2016/02/22 22:43:40
Actually, I think this can be compiled in to url_u
Mark Dittmer
2016/02/23 15:13:54
Done.
| |
| 17 ] | |
| 18 | |
| 19 deps = [ | |
| 20 "//base", | |
| 21 "//testing/gtest", | |
| 22 "//url:url", | |
|
brettw
2016/02/22 22:07:15
This can just be "//url",
Mark Dittmer
2016/02/23 15:13:54
N/A with removal.
| |
| 23 ] | |
| 24 } | |
| OLD | NEW |