Commit aeb477fb by Jamie Madill Committed by Commit Bot

GN: Enable chromium_code config instead.

Using "no_chromium_code" is a bit less strict, but ANGLE should be able to handle slightly stricter warnings. BUG=angleproject:1449 Change-Id: Ifaf77201085dd70cf5ff628b1aa02de55c5e96ba Reviewed-on: https://chromium-review.googlesource.com/360940Reviewed-by: 's avatarCorentin Wallez <cwallez@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent e319171f
...@@ -6,3 +6,4 @@ ...@@ -6,3 +6,4 @@
*.rc eol=crlf *.rc eol=crlf
**/compiled/*.h eol=crlf **/compiled/*.h eol=crlf
*.sh eol=lf *.sh eol=lf
*.gn eol=lf
...@@ -59,10 +59,7 @@ if (is_win) { ...@@ -59,10 +59,7 @@ if (is_win) {
} }
} }
angle_undefine_configs = [ angle_undefine_configs = [ "//build/config/compiler:default_include_dirs" ]
"//build/config/compiler:chromium_code",
"//build/config/compiler:default_include_dirs",
]
component("translator") { component("translator") {
sources = [ sources = [
...@@ -73,10 +70,7 @@ component("translator") { ...@@ -73,10 +70,7 @@ component("translator") {
defines = [ "ANGLE_TRANSLATOR_IMPLEMENTATION" ] defines = [ "ANGLE_TRANSLATOR_IMPLEMENTATION" ]
configs -= angle_undefine_configs configs -= angle_undefine_configs
configs += [ configs += [ ":internal_config" ]
":internal_config",
"//build/config/compiler:no_chromium_code",
]
public_deps = [ public_deps = [
":translator_lib", ":translator_lib",
...@@ -105,10 +99,7 @@ static_library("preprocessor") { ...@@ -105,10 +99,7 @@ static_library("preprocessor") {
sources = rebase_path(compiler_gypi.angle_preprocessor_sources, ".", "src") sources = rebase_path(compiler_gypi.angle_preprocessor_sources, ".", "src")
configs -= angle_undefine_configs configs -= angle_undefine_configs
configs += [ configs += [ ":internal_config" ]
":internal_config",
"//build/config/compiler:no_chromium_code",
]
} }
config("translator_static_config") { config("translator_static_config") {
...@@ -139,7 +130,6 @@ static_library("angle_common") { ...@@ -139,7 +130,6 @@ static_library("angle_common") {
":angle_common_config", ":angle_common_config",
":debug_annotations_config", ":debug_annotations_config",
":internal_config", ":internal_config",
"//build/config/compiler:no_chromium_code",
] ]
public_deps = [ public_deps = [
...@@ -162,10 +152,7 @@ static_library("angle_image_util") { ...@@ -162,10 +152,7 @@ static_library("angle_image_util") {
sources = rebase_path(gles_gypi.libangle_image_util_sources, ".", "src") sources = rebase_path(gles_gypi.libangle_image_util_sources, ".", "src")
configs -= angle_undefine_configs configs -= angle_undefine_configs
configs += [ configs += [ ":internal_config" ]
":internal_config",
"//build/config/compiler:no_chromium_code",
]
public_configs = [ ":angle_image_util_config" ] public_configs = [ ":angle_image_util_config" ]
...@@ -199,7 +186,6 @@ static_library("translator_lib") { ...@@ -199,7 +186,6 @@ static_library("translator_lib") {
configs += [ configs += [
":internal_config", ":internal_config",
":translator_static_config", ":translator_static_config",
"//build/config/compiler:no_chromium_code",
] ]
public_configs = [ ":external_config" ] public_configs = [ ":external_config" ]
...@@ -211,6 +197,12 @@ static_library("translator_lib") { ...@@ -211,6 +197,12 @@ static_library("translator_lib") {
public_deps = [ public_deps = [
":angle_common", ":angle_common",
] ]
if (is_win) {
# Necessary to suppress some system header xtree warnigns in Release.
# For some reason this warning doesn't get triggered in Chromium
cflags = [ "/wd4718" ]
}
} }
static_library("translator_static") { static_library("translator_static") {
...@@ -224,10 +216,7 @@ static_library("translator_static") { ...@@ -224,10 +216,7 @@ static_library("translator_static") {
} }
configs -= angle_undefine_configs configs -= angle_undefine_configs
configs += [ configs += [ ":internal_config" ]
":internal_config",
"//build/config/compiler:no_chromium_code",
]
public_configs = [ ":translator_static_config" ] public_configs = [ ":translator_static_config" ]
public_deps = [ public_deps = [
...@@ -394,12 +383,12 @@ static_library("libANGLE") { ...@@ -394,12 +383,12 @@ static_library("libANGLE") {
} }
configs -= angle_undefine_configs configs -= angle_undefine_configs
configs += [ configs += [
":commit_id_config", ":commit_id_config",
":debug_annotations_config", ":debug_annotations_config",
":libANGLE_config", ":libANGLE_config",
":internal_config", ":internal_config",
"//build/config/compiler:no_chromium_code",
] ]
if (is_win) { if (is_win) {
...@@ -413,7 +402,10 @@ config("shared_library_public_config") { ...@@ -413,7 +402,10 @@ config("shared_library_public_config") {
if (is_mac && !is_component_build) { if (is_mac && !is_component_build) {
# Executable targets that depend on the shared libraries below need to have # Executable targets that depend on the shared libraries below need to have
# the rpath setup in non-component build configurations. # the rpath setup in non-component build configurations.
ldflags = [ "-rpath", "@executable_path/" ] ldflags = [
"-rpath",
"@executable_path/",
]
} }
} }
...@@ -426,7 +418,10 @@ shared_library("libGLESv2") { ...@@ -426,7 +418,10 @@ shared_library("libGLESv2") {
} }
if (is_mac && !is_component_build) { if (is_mac && !is_component_build) {
ldflags = [ "-install_name", "@rpath/${target_name}.dylib" ] ldflags = [
"-install_name",
"@rpath/${target_name}.dylib",
]
public_configs = [ ":shared_library_public_config" ] public_configs = [ ":shared_library_public_config" ]
} }
...@@ -436,7 +431,6 @@ shared_library("libGLESv2") { ...@@ -436,7 +431,6 @@ shared_library("libGLESv2") {
":commit_id_config", ":commit_id_config",
":debug_annotations_config", ":debug_annotations_config",
":libANGLE_config", ":libANGLE_config",
"//build/config/compiler:no_chromium_code",
] ]
defines = [ "LIBGLESV2_IMPLEMENTATION" ] defines = [ "LIBGLESV2_IMPLEMENTATION" ]
...@@ -455,7 +449,10 @@ shared_library("libEGL") { ...@@ -455,7 +449,10 @@ shared_library("libEGL") {
} }
if (is_mac && !is_component_build) { if (is_mac && !is_component_build) {
ldflags = [ "-install_name", "@rpath/${target_name}.dylib" ] ldflags = [
"-install_name",
"@rpath/${target_name}.dylib",
]
public_configs = [ ":shared_library_public_config" ] public_configs = [ ":shared_library_public_config" ]
} }
...@@ -465,7 +462,6 @@ shared_library("libEGL") { ...@@ -465,7 +462,6 @@ shared_library("libEGL") {
":commit_id_config", ":commit_id_config",
":debug_annotations_config", ":debug_annotations_config",
":libANGLE_config", ":libANGLE_config",
"//build/config/compiler:no_chromium_code",
] ]
defines = [ "LIBEGL_IMPLEMENTATION" ] defines = [ "LIBEGL_IMPLEMENTATION" ]
......
...@@ -38,11 +38,7 @@ ...@@ -38,11 +38,7 @@
[ [
4100, # Unreferenced formal parameter. Not interesting. 4100, # Unreferenced formal parameter. Not interesting.
4127, # conditional expression is constant. Too noisy to be useful. 4127, # conditional expression is constant. Too noisy to be useful.
4718, # Recursive call has no side effects. Fires on xtree system header.
# TODO: 4702 doesn't fire on xtree in VS2015 (CTP6). We can remove C4702 after moving to VS2015.
4702, # Unreachable code. Should only fire on system header xtree.
4718, # Recursive call has no side effects. Fires on xtree too.
], ],
'conditions': 'conditions':
[ [
......
...@@ -503,6 +503,4 @@ TIntermTyped *TIntermediate::foldAggregateBuiltIn(TIntermAggregate *aggregate) ...@@ -503,6 +503,4 @@ TIntermTyped *TIntermediate::foldAggregateBuiltIn(TIntermAggregate *aggregate)
// Constant folding not supported for the built-in. // Constant folding not supported for the built-in.
return nullptr; return nullptr;
} }
return nullptr;
} }
...@@ -797,7 +797,7 @@ static size_t GetMaximumVertexUniformBlocks(D3D_FEATURE_LEVEL featureLevel) ...@@ -797,7 +797,7 @@ static size_t GetMaximumVertexUniformBlocks(D3D_FEATURE_LEVEL featureLevel)
static size_t GetReservedVertexOutputVectors(D3D_FEATURE_LEVEL featureLevel) static size_t GetReservedVertexOutputVectors(D3D_FEATURE_LEVEL featureLevel)
{ {
// According to The OpenGL ES Shading Language specifications // According to The OpenGL ES Shading Language specifications
// (Language Version 1.00 section 10.16, Language Version 3.10 section 12.21) // (Language Version 1.00 section 10.16, Language Version 3.10 section 12.21)
// built-in special variables (e.g. gl_FragCoord, or gl_PointCoord) // built-in special variables (e.g. gl_FragCoord, or gl_PointCoord)
// which are statically used in the shader should be included in the variable packing algorithm. // which are statically used in the shader should be included in the variable packing algorithm.
...@@ -820,8 +820,6 @@ static size_t GetReservedVertexOutputVectors(D3D_FEATURE_LEVEL featureLevel) ...@@ -820,8 +820,6 @@ static size_t GetReservedVertexOutputVectors(D3D_FEATURE_LEVEL featureLevel)
default: UNREACHABLE(); return 0; default: UNREACHABLE(); return 0;
} }
return 1;
} }
static size_t GetMaximumVertexOutputVectors(D3D_FEATURE_LEVEL featureLevel) static size_t GetMaximumVertexOutputVectors(D3D_FEATURE_LEVEL featureLevel)
......
...@@ -1599,8 +1599,6 @@ static bool ValidateObjectIdentifierAndName(Context *context, GLenum identifier, ...@@ -1599,8 +1599,6 @@ static bool ValidateObjectIdentifierAndName(Context *context, GLenum identifier,
context->handleError(Error(GL_INVALID_ENUM, "Invalid identifier.")); context->handleError(Error(GL_INVALID_ENUM, "Invalid identifier."));
return false; return false;
} }
return true;
} }
bool ValidateObjectLabelKHR(Context *context, bool ValidateObjectLabelKHR(Context *context,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment