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 += [ "//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 Loading... |
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 } |
OLD | NEW |