Chromium Code Reviews| Index: components/doodle/BUILD.gn |
| diff --git a/components/doodle/BUILD.gn b/components/doodle/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0578bcad9137f16e87a187b28f6346b23a6ca778 |
| --- /dev/null |
| +++ b/components/doodle/BUILD.gn |
| @@ -0,0 +1,30 @@ |
| +# Copyright 2017 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +static_library("doodle") { |
| + sources = [ |
| + "doodle_fetcher.cc", |
| + "doodle_fetcher.h", |
| + ] |
| + |
| + deps = [ |
| + "//base", |
| + "//components/google/core/browser:browser", |
|
Marc Treib
2017/02/01 11:53:13
nit: the final ":browser" isn't required
fhorschig
2017/02/03 13:21:04
Done.
|
| + "//net", |
| + ] |
| +} |
| + |
| +source_set("unit_tests") { |
| + testonly = true |
| + sources = [ |
| + "doodle_fetcher_unittest.cc", |
| + ] |
| + |
| + deps = [ |
| + ":doodle", |
| + "//components/google/core/browser:browser", |
|
Marc Treib
2017/02/01 11:53:13
Also here (though is the explicit dependency actua
fhorschig
2017/02/03 13:21:04
Not yet.
|
| + "//net:test_support", |
| + "//ui/base", |
| + ] |
| +} |