| Index: ppapi/BUILD.gn
|
| diff --git a/ppapi/BUILD.gn b/ppapi/BUILD.gn
|
| index dd722c14acd170657f910708e4fe5592a6c7eed4..24827ab0d15acb063db506f2259a883d6ec4f46c 100644
|
| --- a/ppapi/BUILD.gn
|
| +++ b/ppapi/BUILD.gn
|
| @@ -29,15 +29,6 @@ source_set("ppapi_macros") {
|
|
|
| source_set("ppapi_cpp_objects") {
|
| sources = gypi_values.cpp_source_files
|
| -
|
| - if (is_win) {
|
| - cflags = [ "/we4244" ] # Implicit conversion, possible loss of data.
|
| - } else {
|
| - cflags = [
|
| - "-Wextra",
|
| - "-pedantic",
|
| - ]
|
| - }
|
| }
|
|
|
| source_set("ppapi_cpp") {
|
| @@ -46,13 +37,6 @@ source_set("ppapi_cpp") {
|
| "cpp/ppp_entrypoints.cc",
|
| ]
|
|
|
| - if (is_posix) {
|
| - cflags = [
|
| - "-Wextra",
|
| - "-pedantic",
|
| - ]
|
| - }
|
| -
|
| deps = [
|
| ":ppapi_c",
|
| ":ppapi_cpp_objects",
|
| @@ -433,8 +417,6 @@ component("ppapi_shared") {
|
|
|
| if (is_mac) {
|
| libs = [ "QuartzCore.framework" ]
|
| - } else if (is_win) {
|
| - cflags = [ "/wd4267" ] # size_t to int truncation.
|
| }
|
| }
|
|
|
| @@ -750,10 +732,6 @@ component("ppapi_proxy") {
|
| "//ui/surface",
|
| blink_target,
|
| ]
|
| -
|
| - if (is_win) {
|
| - cflags = [ "/wd4267" ] # size_t to int truncation.
|
| - }
|
| }
|
|
|
| component("ppapi_host") {
|
|
|