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

Side by Side Diff: cloud_print/service/BUILD.gn

Issue 1214113010: Add local suppresion for -Wparentheses and enable everywhere on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moo Created 5 years, 5 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 | « build/config/compiler/BUILD.gn ('k') | cloud_print/service/win/service.gyp » ('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("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 6
7 source_set("cloud_print_service_lib") { 7 source_set("cloud_print_service_lib") {
8 sources = [ 8 sources = [
9 "//cloud_print/common/win/cloud_print_utils.cc", 9 "//cloud_print/common/win/cloud_print_utils.cc",
10 "//cloud_print/common/win/cloud_print_utils.h", 10 "//cloud_print/common/win/cloud_print_utils.h",
(...skipping 21 matching lines...) Expand all
32 ":service_resources", 32 ":service_resources",
33 "//base", 33 "//base",
34 "//base:base_static", 34 "//base:base_static",
35 "//base/third_party/dynamic_annotations", 35 "//base/third_party/dynamic_annotations",
36 "//content/public/common", 36 "//content/public/common",
37 "//google_apis", 37 "//google_apis",
38 "//ipc", 38 "//ipc",
39 "//net", 39 "//net",
40 "//url", 40 "//url",
41 ] 41 ]
42
43 if (is_clang) {
44 cflags = [ "-Wno-parentheses" ]
45 }
42 } 46 }
43 47
44 grit("service_resources") { 48 grit("service_resources") {
45 source = "win/service_resources.grd" 49 source = "win/service_resources.grd"
46 outputs = [ 50 outputs = [
47 "resources.h", 51 "resources.h",
48 "service_resources_en.rc", 52 "service_resources_en.rc",
49 ] 53 ]
50 } 54 }
OLDNEW
« no previous file with comments | « build/config/compiler/BUILD.gn ('k') | cloud_print/service/win/service.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698