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

Side by Side Diff: chrome/common/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 | « chrome/browser/ui/BUILD.gn ('k') | chrome/common/extensions/api/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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
7 7
8 gypi_values = exec_script("//build/gypi_to_gn.py", 8 gypi_values = exec_script("//build/gypi_to_gn.py",
9 [ rebase_path("../chrome_common.gypi") ], 9 [ rebase_path("../chrome_common.gypi") ],
10 "scope", 10 "scope",
(...skipping 22 matching lines...) Expand all
33 "extensions_api_resources.pak", 33 "extensions_api_resources.pak",
34 ] 34 ]
35 } 35 }
36 } 36 }
37 37
38 # GYP version: chrome/chrome_common.gyp:common 38 # GYP version: chrome/chrome_common.gyp:common
39 static_library("common") { 39 static_library("common") {
40 sources = rebase_path(gypi_values.chrome_common_sources, ".", "//chrome") 40 sources = rebase_path(gypi_values.chrome_common_sources, ".", "//chrome")
41 defines = [] 41 defines = []
42 42
43 configs += [ "//build/config/compiler:wexit_time_destructors" ] 43 configs += [
44 "//build/config:precompiled_headers",
45 "//build/config/compiler:wexit_time_destructors",
46 ]
44 47
45 public_deps = [ 48 public_deps = [
46 "//chrome/common:constants", 49 "//chrome/common:constants",
47 "//chrome/common/net", 50 "//chrome/common/net",
48 "//chrome/common/safe_browsing:proto", 51 "//chrome/common/safe_browsing:proto",
49 ] 52 ]
50 deps = [ 53 deps = [
51 ":version", 54 ":version",
52 "//base:base", 55 "//base:base",
53 "//base:i18n", 56 "//base:i18n",
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 ":constants", 359 ":constants",
357 "//base", 360 "//base",
358 ] 361 ]
359 } 362 }
360 363
361 mojom("mojo_bindings") { 364 mojom("mojo_bindings") {
362 sources = [ 365 sources = [
363 "resource_usage_reporter.mojom", 366 "resource_usage_reporter.mojom",
364 ] 367 ]
365 } 368 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/BUILD.gn ('k') | chrome/common/extensions/api/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698