Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(374)

Side by Side Diff: extensions/common/BUILD.gn

Issue 1409033007: Aura on Android: Stub implementation of UsbPrinterManifestHandler. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed a problem with the gypi file. Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | extensions/common/api/printer_provider/usb_printer_manifest_handler_android.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | extensions/common/api/printer_provider/usb_printer_manifest_handler_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698