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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 "//third_party/boringssl", | 65 "//third_party/boringssl", |
66 "//third_party/icu", | 66 "//third_party/icu", |
67 "//third_party/libxml", | 67 "//third_party/libxml", |
68 "//third_party/re2", | 68 "//third_party/re2", |
69 "//ui/base", | 69 "//ui/base", |
70 "//ui/gfx/geometry", | 70 "//ui/gfx/geometry", |
71 "//ui/gfx/ipc", | 71 "//ui/gfx/ipc", |
72 "//url", | 72 "//url", |
73 ] | 73 ] |
74 | 74 |
| 75 if (is_android) { |
| 76 deps -= [ "//device/usb" ] |
| 77 sources -= [ |
| 78 "api/printer_provider/usb_printer_manifest_data.cc", |
| 79 "api/printer_provider/usb_printer_manifest_data.h", |
| 80 "api/printer_provider/usb_printer_manifest_handler.cc", |
| 81 ] |
| 82 } |
| 83 |
75 if (enable_nacl) { | 84 if (enable_nacl) { |
76 nacl_sources = | 85 nacl_sources = |
77 rebase_path(extensions_gypi_values.extensions_common_sources_nacl, | 86 rebase_path(extensions_gypi_values.extensions_common_sources_nacl, |
78 ".", | 87 ".", |
79 "//extensions") | 88 "//extensions") |
80 sources += nacl_sources | 89 sources += nacl_sources |
81 } | 90 } |
82 } | 91 } |
83 } # enable_extensions | 92 } # enable_extensions |
OLD | NEW |