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

Unified Diff: ppapi/BUILD.gn

Issue 774353003: gn format // (the rest) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase net Created 6 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pdf/BUILD.gn ('k') | printing/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/BUILD.gn
diff --git a/ppapi/BUILD.gn b/ppapi/BUILD.gn
index 9107ee7695c1f3be65dddcc92c9782e73a4396ae..3a1865681f5f5bf6cfd141ac29160121e67fb07e 100644
--- a/ppapi/BUILD.gn
+++ b/ppapi/BUILD.gn
@@ -2,17 +2,16 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-gypi_values = exec_script(
- "//build/gypi_to_gn.py",
- [ rebase_path("ppapi_sources.gypi") ],
- "scope",
- [ "ppapi_sources.gypi" ])
+gypi_values = exec_script("//build/gypi_to_gn.py",
+ [ rebase_path("ppapi_sources.gypi") ],
+ "scope",
+ [ "ppapi_sources.gypi" ])
# TODO(GYP) support chrome_multiple_dll
#if (chrome_multiple_dll) {
# blink_target = "//third_party/WebKit/public:blink_minimal"
#} else {
- blink_target = "//third_party/WebKit/public:blink"
+blink_target = "//third_party/WebKit/public:blink"
#}
# These are just headers.
@@ -23,16 +22,16 @@ source_set("ppapi_c") {
# Some targets need to depend on the PPAPI version only. This target exists so
# they can include this header without header check warnings.
source_set("ppapi_macros") {
- sources = [ "c/pp_macros.h" ]
+ sources = [
+ "c/pp_macros.h",
+ ]
}
source_set("ppapi_cpp_objects") {
sources = gypi_values.cpp_source_files
if (is_win) {
- cflags = [
- "/we4244", # Implicit conversion, possible loss of data.
- ]
+ cflags = [ "/we4244" ] # Implicit conversion, possible loss of data.
} else {
cflags = [
"-Wextra",
@@ -208,14 +207,13 @@ component("ppapi_shared") {
"shared_impl/var.h",
"shared_impl/var_tracker.cc",
"shared_impl/var_tracker.h",
+
# TODO(viettrungluu): Split these out; it won"t be used in NaCl.
"shared_impl/private/net_address_private_impl.cc",
"shared_impl/private/net_address_private_impl_constants.cc",
"shared_impl/private/net_address_private_impl.h",
-
"shared_impl/private/ppb_x509_certificate_private_shared.cc",
"shared_impl/private/ppb_x509_certificate_private_shared.h",
-
"thunk/enter.cc",
"thunk/enter.h",
"thunk/ppb_audio_api.h",
@@ -487,7 +485,6 @@ component("ppapi_proxy") {
# These callback files are standalone.
"cpp/completion_callback.h",
"utility/completion_callback_factory.h",
-
"proxy/audio_buffer_resource.cc",
"proxy/audio_buffer_resource.h",
"proxy/broker_resource.cc",
@@ -817,5 +814,4 @@ static_library("ppapi_unittest_shared") {
"//testing/gtest",
]
}
-
# TODO(GYP) other targets from ppapi_tests.gyp
« no previous file with comments | « pdf/BUILD.gn ('k') | printing/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698