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

Side by Side Diff: ppapi/shared_impl/BUILD.gn

Issue 1250273002: Add precompiled headers to GN build for large targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mergey-wergey Created 5 years, 4 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
« no previous file with comments | « ppapi/proxy/BUILD.gn ('k') | ppapi/thunk/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("shared_impl") { 5 component("shared_impl") {
6 output_name = "ppapi_shared" 6 output_name = "ppapi_shared"
7 7
8 sources = [ 8 sources = [
9 "array_var.cc", 9 "array_var.cc",
10 "array_var.h", 10 "array_var.h",
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 if (is_win && current_cpu == "x64" && current_toolchain != default_toolchain) { 144 if (is_win && current_cpu == "x64" && current_toolchain != default_toolchain) {
145 sources -= [ 145 sources -= [
146 "ppb_audio_shared.cc", 146 "ppb_audio_shared.cc",
147 "ppb_graphics_3d_shared.cc", 147 "ppb_graphics_3d_shared.cc",
148 "ppb_opengles2_shared.cc", 148 "ppb_opengles2_shared.cc",
149 "private/net_address_private_impl.cc", 149 "private/net_address_private_impl.cc",
150 "private/ppb_host_resolver_shared.cc", 150 "private/ppb_host_resolver_shared.cc",
151 ] 151 ]
152 } 152 }
153 153
154 configs += [ "//build/config:precompiled_headers" ]
154 defines = [ 155 defines = [
155 "PPAPI_SHARED_IMPLEMENTATION", 156 "PPAPI_SHARED_IMPLEMENTATION",
156 157
157 # This target goes in the same library as thunk (in GYP they are the same). 158 # This target goes in the same library as thunk (in GYP they are the same).
158 "PPAPI_THUNK_IMPLEMENTATION", 159 "PPAPI_THUNK_IMPLEMENTATION",
159 ] 160 ]
160 161
161 deps = [ 162 deps = [
162 "//base", 163 "//base",
163 "//base:i18n", 164 "//base:i18n",
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 deps = [ 201 deps = [
201 "//base/test:test_support", 202 "//base/test:test_support",
202 "//ipc", 203 "//ipc",
203 "//ipc:test_support", 204 "//ipc:test_support",
204 "//ppapi/proxy", 205 "//ppapi/proxy",
205 "//ppapi/shared_impl", 206 "//ppapi/shared_impl",
206 "//testing/gmock", 207 "//testing/gmock",
207 "//testing/gtest", 208 "//testing/gtest",
208 ] 209 ]
209 } 210 }
OLDNEW
« no previous file with comments | « ppapi/proxy/BUILD.gn ('k') | ppapi/thunk/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698