OLD | NEW |
---|---|
(Empty) | |
1 # Copyright 2017 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 component("child") { | |
8 output_name = "display_compositor_child" | |
9 | |
10 defines = [ "DISPLAY_COMPOSITOR_IMPLEMENTATION" ] | |
danakj
2017/02/28 20:34:56
separate components should have separate IMPLEMENT
xlai (Olivia)
2017/03/01 20:02:45
This is not a separate implementation. It still be
danakj
2017/03/03 19:21:55
That makes me question this a bit more then. //com
| |
11 | |
12 sources = [ | |
13 "child_shared_bitmap_manager.cc", | |
14 "child_shared_bitmap_manager.h", | |
15 ] | |
16 | |
17 deps = [ | |
18 "//base", | |
19 "//cc", | |
20 "//components/display_compositor", | |
21 "//components/display_compositor/interfaces", | |
22 "//mojo/public/cpp/bindings", | |
23 "//ui/gfx", | |
24 ] | |
25 } | |
OLD | NEW |