Chromium Code Reviews| Index: components/viz/common/BUILD.gn |
| diff --git a/components/viz/common/BUILD.gn b/components/viz/common/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e3a4c6ad39640928dad037e42104c6301c5c647b |
| --- /dev/null |
| +++ b/components/viz/common/BUILD.gn |
| @@ -0,0 +1,22 @@ |
| +# 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. |
| + |
| +source_set("common") { |
| + sources = [ |
| + "server_gpu_memory_buffer_manager.cc", |
| + "server_gpu_memory_buffer_manager.h", |
| + ] |
| + |
| + deps = [ |
| + "//gpu/ipc/client", |
| + ] |
| + |
| + public_deps = [ |
| + "//gpu/command_buffer/client", |
| + "//gpu/ipc/common", |
| + "//gpu/ipc/host", |
| + "//services/ui/gpu/interfaces", |
|
danakj
2017/06/14 22:57:57
does this need to be a public dep for a forward de
sadrul
2017/06/14 23:18:33
I moved gpu/ipc/common into deps. But the rest are
danakj
2017/06/15 15:08:58
Similar to the header, the user of this has to con
|
| + "//ui/gfx", |
| + ] |
| +} |