Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("snapshot") { | 8 component("snapshot") { |
| 9 sources = [ | 9 sources = [ |
| 10 "screenshot_grabber.cc", | 10 "screenshot_grabber.cc", |
| 11 "screenshot_grabber.h", | 11 "screenshot_grabber.h", |
| 12 "screenshot_grabber_observer.h", | 12 "screenshot_grabber_observer.h", |
| 13 "snapshot.cc", | 13 "snapshot.cc", |
| 14 "snapshot.h", | 14 "snapshot.h", |
| 15 "snapshot_android.cc", | 15 "snapshot_android.cc", |
| 16 "snapshot_async.cc", | 16 "snapshot_async.cc", |
| 17 "snapshot_async.h", | 17 "snapshot_async.h", |
| 18 "snapshot_aura.cc", | 18 "snapshot_aura.cc", |
|
sky
2017/03/23 03:29:13
add snapshot_aura.h.
| |
| 19 "snapshot_export.h", | 19 "snapshot_export.h", |
| 20 "snapshot_ios.mm", | 20 "snapshot_ios.mm", |
| 21 "snapshot_mac.mm", | 21 "snapshot_mac.mm", |
| 22 "snapshot_win.cc", | |
| 23 "snapshot_win.h", | |
| 22 ] | 24 ] |
| 23 | 25 |
| 24 defines = [ "SNAPSHOT_IMPLEMENTATION" ] | 26 defines = [ "SNAPSHOT_IMPLEMENTATION" ] |
| 25 | 27 |
| 26 deps = [ | 28 deps = [ |
| 27 "//base", | 29 "//base", |
| 28 "//skia", | 30 "//skia", |
| 29 "//ui/base", | 31 "//ui/base", |
| 30 "//ui/display", | 32 "//ui/display", |
| 31 "//ui/gfx", | 33 "//ui/gfx", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 94 deps += [ | 96 deps += [ |
| 95 "//ui/aura:test_support", | 97 "//ui/aura:test_support", |
| 96 "//ui/compositor", | 98 "//ui/compositor", |
| 97 "//ui/compositor:test_support", | 99 "//ui/compositor:test_support", |
| 98 "//ui/wm", | 100 "//ui/wm", |
| 99 ] | 101 ] |
| 100 } else { | 102 } else { |
| 101 sources -= [ "snapshot_aura_unittest.cc" ] | 103 sources -= [ "snapshot_aura_unittest.cc" ] |
| 102 } | 104 } |
| 103 } | 105 } |
| OLD | NEW |