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/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//extensions/extensions.gni") | 7 import("//extensions/extensions.gni") |
8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 8 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
9 | 9 |
10 # GYP version: extensions/extensions.gyp:extensions_common_constants | 10 # GYP version: extensions/extensions.gyp:extensions_common_constants |
(...skipping 23 matching lines...) Expand all Loading... |
34 ".", | 34 ".", |
35 "//extensions") | 35 "//extensions") |
36 | 36 |
37 configs += [ | 37 configs += [ |
38 "//build/config:precompiled_headers", | 38 "//build/config:precompiled_headers", |
39 | 39 |
40 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 40 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
41 "//build/config/compiler:no_size_t_to_int_warning", | 41 "//build/config/compiler:no_size_t_to_int_warning", |
42 ] | 42 ] |
43 | 43 |
44 public_deps = [ | 44 deps = [ |
45 ":common_constants", | 45 ":common_constants", |
46 ":mojo", | 46 ":mojo", |
47 ] | |
48 | 47 |
49 deps = [ | |
50 # TODO(benwells): figure out what to do with the api target and | 48 # TODO(benwells): figure out what to do with the api target and |
51 # api resources compiled into the chrome resource bundle. | 49 # api resources compiled into the chrome resource bundle. |
52 # http://crbug.com/162530 | 50 # http://crbug.com/162530 |
53 "//chrome:resources", | 51 "//chrome:resources", |
54 "//components/crx_file", | 52 "//components/crx_file", |
55 "//components/url_matcher", | 53 "//components/url_matcher", |
56 "//content/public/common", | 54 "//content/public/common", |
57 "//crypto", | 55 "//crypto", |
58 "//device/bluetooth", | 56 "//device/bluetooth", |
59 "//device/usb", | 57 "//device/usb", |
(...skipping 14 matching lines...) Expand all Loading... |
74 | 72 |
75 if (enable_nacl) { | 73 if (enable_nacl) { |
76 nacl_sources = | 74 nacl_sources = |
77 rebase_path(extensions_gypi_values.extensions_common_sources_nacl, | 75 rebase_path(extensions_gypi_values.extensions_common_sources_nacl, |
78 ".", | 76 ".", |
79 "//extensions") | 77 "//extensions") |
80 sources += nacl_sources | 78 sources += nacl_sources |
81 } | 79 } |
82 } | 80 } |
83 } # enable_extensions | 81 } # enable_extensions |
OLD | NEW |