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("//third_party/protobuf/proto_library.gni") | 6 import("//third_party/protobuf/proto_library.gni") |
| 7 | 7 |
| 8 source_set("service") { | 8 source_set("service") { |
| 9 defines = [ "GPU_IMPLEMENTATION" ] | |
|
brettw
2014/07/08 21:58:33
Ditto
| |
| 9 sources = [ | 10 sources = [ |
| 10 "async_pixel_transfer_delegate.cc", | 11 "async_pixel_transfer_delegate.cc", |
| 11 "async_pixel_transfer_delegate.h", | 12 "async_pixel_transfer_delegate.h", |
| 12 "async_pixel_transfer_manager_android.cc", | 13 "async_pixel_transfer_manager_android.cc", |
| 13 "async_pixel_transfer_manager_idle.cc", | 14 "async_pixel_transfer_manager_idle.cc", |
| 14 "async_pixel_transfer_manager_idle.h", | 15 "async_pixel_transfer_manager_idle.h", |
| 15 "async_pixel_transfer_manager_linux.cc", | 16 "async_pixel_transfer_manager_linux.cc", |
| 16 "async_pixel_transfer_manager_mac.cc", | 17 "async_pixel_transfer_manager_mac.cc", |
| 17 "async_pixel_transfer_manager_share_group.cc", | 18 "async_pixel_transfer_manager_share_group.cc", |
| 18 "async_pixel_transfer_manager_share_group.h", | 19 "async_pixel_transfer_manager_share_group.h", |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 146 if (is_android && !is_debug) { | 147 if (is_android && !is_debug) { |
| 147 # On Android optimize more since this component can be a bottleneck. | 148 # On Android optimize more since this component can be a bottleneck. |
| 148 configs -= [ "//build/config/compiler:optimize" ] | 149 configs -= [ "//build/config/compiler:optimize" ] |
| 149 configs += [ "//build/config/compiler:optimize_max" ] | 150 configs += [ "//build/config/compiler:optimize_max" ] |
| 150 } | 151 } |
| 151 } | 152 } |
| 152 | 153 |
| 153 proto_library("disk_cache_proto") { | 154 proto_library("disk_cache_proto") { |
| 154 sources = [ "disk_cache_proto.proto" ] | 155 sources = [ "disk_cache_proto.proto" ] |
| 155 } | 156 } |
| OLD | NEW |