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

Side by Side Diff: ui/snapshot/BUILD.gn

Issue 2592983002: [devtools] Support different encodings for Page.CaptureScreenshot. (Closed)
Patch Set: Wait for load in CaptureScreenshotTest to fix android bot. Created 3 years, 11 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
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.h", 14 "snapshot.h",
14 "snapshot_android.cc", 15 "snapshot_android.cc",
15 "snapshot_async.cc", 16 "snapshot_async.cc",
16 "snapshot_async.h", 17 "snapshot_async.h",
17 "snapshot_aura.cc", 18 "snapshot_aura.cc",
18 "snapshot_export.h", 19 "snapshot_export.h",
19 "snapshot_ios.mm", 20 "snapshot_ios.mm",
20 "snapshot_mac.mm", 21 "snapshot_mac.mm",
21 ] 22 ]
22 23
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 deps += [ 93 deps += [
93 "//ui/aura:test_support", 94 "//ui/aura:test_support",
94 "//ui/compositor", 95 "//ui/compositor",
95 "//ui/compositor:test_support", 96 "//ui/compositor:test_support",
96 "//ui/wm", 97 "//ui/wm",
97 ] 98 ]
98 } else { 99 } else {
99 sources -= [ "snapshot_aura_unittest.cc" ] 100 sources -= [ "snapshot_aura_unittest.cc" ]
100 } 101 }
101 } 102 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698