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

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

Issue 555373004: Compile specific parts of the Android build with -O2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments Created 6 years, 3 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 17 matching lines...) Expand all
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/gfx", 35 "//ui/gfx",
36 "//ui/gfx/geometry", 36 "//ui/gfx/geometry",
37 ] 37 ]
38
39 if (is_android && !is_debug) {
40 configs -= [ "//build/config/compiler:optimize" ]
41 configs += [ "//build/config/compiler:optimize_max" ]
42 }
38 } 43 }
39 44
OLDNEW
« cc/BUILD.gn ('K') | « cc/cc.gyp ('k') | gpu/command_buffer_service.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698