OLD | NEW |
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 Loading... |
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 += [ | 43 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
44 "//build/config:precompiled_headers", | |
45 "//build/config/compiler:wexit_time_destructors", | |
46 ] | |
47 | 44 |
48 public_deps = [ | 45 public_deps = [ |
49 "//chrome/common:constants", | 46 "//chrome/common:constants", |
50 "//chrome/common/net", | 47 "//chrome/common/net", |
51 "//chrome/common/safe_browsing:proto", | 48 "//chrome/common/safe_browsing:proto", |
52 ] | 49 ] |
53 deps = [ | 50 deps = [ |
54 ":version", | 51 ":version", |
55 "//base:base", | 52 "//base:base", |
56 "//base:i18n", | 53 "//base:i18n", |
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
359 ":constants", | 356 ":constants", |
360 "//base", | 357 "//base", |
361 ] | 358 ] |
362 } | 359 } |
363 | 360 |
364 mojom("mojo_bindings") { | 361 mojom("mojo_bindings") { |
365 sources = [ | 362 sources = [ |
366 "resource_usage_reporter.mojom", | 363 "resource_usage_reporter.mojom", |
367 ] | 364 ] |
368 } | 365 } |
OLD | NEW |