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

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

Issue 1258273004: Annotate large GN targets for precompiled headers (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: disable 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/BUILD.gn ('k') | ppapi/proxy/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 import("//ppapi/ppapi_sources.gni") 5 import("//ppapi/ppapi_sources.gni")
6 6
7 # Link to this target to get the PPAPI C++ wrapper objects and plugin startup 7 # Link to this target to get the PPAPI C++ wrapper objects and plugin startup
8 # code. See also "objects" below. 8 # code. See also "objects" below.
9 source_set("cpp") { 9 source_set("cpp") {
10 sources = [ 10 sources = [
11 "module_embedder.h", 11 "module_embedder.h",
12 "ppp_entrypoints.cc", 12 "ppp_entrypoints.cc",
13 ] 13 ]
14 14
15 deps = [ 15 deps = [
16 ":objects", 16 ":objects",
17 "//ppapi/c", 17 "//ppapi/c",
18 ] 18 ]
19 } 19 }
20 20
21 # Link to this target to get only the PPAPI C++ wrapper objects but not the 21 # Link to this target to get only the PPAPI C++ wrapper objects but not the
22 # plugin startup code. Some plugins need special startup code that they supply 22 # plugin startup code. Some plugins need special startup code that they supply
23 # themselves. 23 # themselves.
24 source_set("objects") { 24 source_set("objects") {
25 sources = rebase_path(ppapi_sources.cpp_source_files, ".", "..") 25 sources = rebase_path(ppapi_sources.cpp_source_files, ".", "..")
26 configs += [ "//build/config:precompiled_headers" ]
26 } 27 }
OLDNEW
« no previous file with comments | « ppapi/BUILD.gn ('k') | ppapi/proxy/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698