diff options
Diffstat (limited to 'chromecast/graphics/BUILD.gn')
-rw-r--r-- | chromecast/graphics/BUILD.gn | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/chromecast/graphics/BUILD.gn b/chromecast/graphics/BUILD.gn new file mode 100644 index 0000000..f07a871 --- /dev/null +++ b/chromecast/graphics/BUILD.gn @@ -0,0 +1,16 @@ +# Copyright 2015 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("graphics") { + sources = [ + "cast_screen.cc", + "cast_screen.h", + ] + + deps = [ + "//ui/aura", + "//ui/gfx", + "//ui/gfx/geometry", + ] +} |