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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//extensions/extensions.gni") | 6 import("//extensions/extensions.gni") |
7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
8 | 8 |
9 # GYP version: extensions/extensions.gyp:extensions_common_constants | 9 # GYP version: extensions/extensions.gyp:extensions_common_constants |
10 source_set("common_constants") { | 10 source_set("common_constants") { |
11 sources = | 11 sources = |
12 rebase_path(extensions_gypi_values.extensions_common_constants_sources, | 12 rebase_path(extensions_gypi_values.extensions_common_constants_sources, |
13 ".", | 13 ".", |
14 "//extensions") | 14 "//extensions") |
15 | 15 |
16 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 16 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
17 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 17 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 | 82 |
83 if (enable_nacl) { | 83 if (enable_nacl) { |
84 nacl_sources = | 84 nacl_sources = |
85 rebase_path(extensions_gypi_values.extensions_common_sources_nacl, | 85 rebase_path(extensions_gypi_values.extensions_common_sources_nacl, |
86 ".", | 86 ".", |
87 "//extensions") | 87 "//extensions") |
88 sources += nacl_sources | 88 sources += nacl_sources |
89 } | 89 } |
90 } | 90 } |
91 } # enable_extensions | 91 } # enable_extensions |
OLD | NEW |