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

Side by Side Diff: cc/surfaces/BUILD.gn

Issue 666813002: GN: Fix Android component build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-clank
Patch Set: Created 6 years, 2 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 component("surfaces") { 5 component("surfaces") {
6 output_name = "cc_surfaces" 6 output_name = "cc_surfaces"
7 sources = [ 7 sources = [
8 "display.cc", 8 "display.cc",
9 "display.h", 9 "display.h",
10 "display_client.h", 10 "display_client.h",
(...skipping 14 matching lines...) Expand all
25 "surfaces_export.h", 25 "surfaces_export.h",
26 ] 26 ]
27 27
28 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ] 28 defines = [ "CC_SURFACES_IMPLEMENTATION=1" ]
29 29
30 deps = [ 30 deps = [
31 "//base", 31 "//base",
32 "//base/third_party/dynamic_annotations", 32 "//base/third_party/dynamic_annotations",
33 "//cc", 33 "//cc",
34 "//skia", 34 "//skia",
35 "//ui/events:events_base",
jamesr 2014/10/24 02:16:23 hmm, cc/surfaces doesn't use anything in events. w
cjhopman 2014/10/24 02:26:32 I can check for sure if you want, but I'm pretty s
35 "//ui/gfx", 36 "//ui/gfx",
36 "//ui/gfx/geometry", 37 "//ui/gfx/geometry",
37 ] 38 ]
38 39
39 if (is_android && !is_debug) { 40 if (is_android && !is_debug) {
40 configs -= [ "//build/config/compiler:optimize" ] 41 configs -= [ "//build/config/compiler:optimize" ]
41 configs += [ "//build/config/compiler:optimize_max" ] 42 configs += [ "//build/config/compiler:optimize_max" ]
42 } 43 }
43 } 44 }
44 45
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698