| Index: ui/gl/init/BUILD.gn
|
| diff --git a/components/image_fetcher/BUILD.gn b/ui/gl/init/BUILD.gn
|
| similarity index 52%
|
| copy from components/image_fetcher/BUILD.gn
|
| copy to ui/gl/init/BUILD.gn
|
| index ffb753a412bab78f20dede0084f2ac375e6e63e9..844ee291e5d59c58f1791c1913ba5f7f295d3965 100644
|
| --- a/components/image_fetcher/BUILD.gn
|
| +++ b/ui/gl/init/BUILD.gn
|
| @@ -2,14 +2,22 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -source_set("image_fetcher") {
|
| +component("init") {
|
| + output_name = "gl_init"
|
| +
|
| sources = [
|
| - "image_fetcher.h",
|
| - "image_fetcher_delegate.h",
|
| + "gl_factory.cc",
|
| + "gl_factory.h",
|
| + "gl_init_export.h",
|
| ]
|
| + defines = [ "GL_INIT_IMPLEMENTATION" ]
|
|
|
| - public_deps = [
|
| + deps = [
|
| "//base",
|
| - "//url",
|
| + "//ui/gfx",
|
| + ]
|
| +
|
| + public_deps = [
|
| + "//ui/gl",
|
| ]
|
| }
|
|
|