Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(239)

Side by Side Diff: components/display_compositor/child/BUILD.gn

Issue 2717213004: Move SharedBitmapManager implementation out of content/ (Closed)
Patch Set: rebase Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698