| 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 | 6 |
| 7 component("snapshot") { | 7 component("snapshot") { |
| 8 sources = [ | 8 sources = [ |
| 9 "screenshot_grabber.cc", |
| 10 "screenshot_grabber.h", |
| 11 "screenshot_grabber_observer.h", |
| 9 "snapshot.h", | 12 "snapshot.h", |
| 10 "snapshot_android.cc", | 13 "snapshot_android.cc", |
| 11 "snapshot_async.cc", | 14 "snapshot_async.cc", |
| 12 "snapshot_async.h", | 15 "snapshot_async.h", |
| 13 "snapshot_aura.cc", | 16 "snapshot_aura.cc", |
| 14 "snapshot_export.h", | 17 "snapshot_export.h", |
| 15 "snapshot_ios.mm", | 18 "snapshot_ios.mm", |
| 16 "snapshot_mac.mm", | 19 "snapshot_mac.mm", |
| 17 ] | 20 ] |
| 18 | 21 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 deps += [ | 75 deps += [ |
| 73 "//ui/aura:test_support", | 76 "//ui/aura:test_support", |
| 74 "//ui/compositor", | 77 "//ui/compositor", |
| 75 "//ui/compositor:test_support", | 78 "//ui/compositor:test_support", |
| 76 "//ui/wm", | 79 "//ui/wm", |
| 77 ] | 80 ] |
| 78 } else { | 81 } else { |
| 79 sources -= [ "snapshot_aura_unittest.cc" ] | 82 sources -= [ "snapshot_aura_unittest.cc" ] |
| 80 } | 83 } |
| 81 } | 84 } |
| OLD | NEW |