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

Side by Side Diff: extensions/BUILD.gn

Issue 797183005: Add a mimeHandler extension API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@streams-lifetime
Patch Set: Created 5 years, 11 months 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
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("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 import("//tools/grit/repack.gni") 6 import("//tools/grit/repack.gni")
7 7
8 assert(enable_extensions) 8 assert(enable_extensions)
9 9
10 # GYP version: extensions/extensions_resources.gyp:extensions_resources 10 # GYP version: extensions/extensions_resources.gyp:extensions_resources
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 "grit/extensions_renderer_resources.h", 51 "grit/extensions_renderer_resources.h",
52 "extensions_renderer_resources.pak", 52 "extensions_renderer_resources.pak",
53 ] 53 ]
54 grit_flags = [ 54 grit_flags = [
55 "-E", 55 "-E",
56 "mojom_root=" + rebase_path(root_gen_dir), 56 "mojom_root=" + rebase_path(root_gen_dir),
57 ] 57 ]
58 58
59 deps = [ 59 deps = [
60 "//device/serial:serial_mojo", 60 "//device/serial:serial_mojo",
61 "//extensions/common/api:mojom",
61 ] 62 ]
62 } 63 }
63 64
64 source_set("test_support") { 65 source_set("test_support") {
65 testonly = true 66 testonly = true
66 sources = [ 67 sources = [
67 "browser/api/dns/mock_host_resolver_creator.cc", 68 "browser/api/dns/mock_host_resolver_creator.cc",
68 "browser/api/dns/mock_host_resolver_creator.h", 69 "browser/api/dns/mock_host_resolver_creator.h",
69 "browser/api/storage/settings_test_util.cc", 70 "browser/api/storage/settings_test_util.cc",
70 "browser/api/storage/settings_test_util.h", 71 "browser/api/storage/settings_test_util.h",
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 "//testing/gmock", 276 "//testing/gmock",
276 "//testing/gtest", 277 "//testing/gtest",
277 "//third_party/leveldatabase", 278 "//third_party/leveldatabase",
278 ] 279 ]
279 280
280 if (is_win) { 281 if (is_win) {
281 deps += [ "//base/allocator" ] 282 deps += [ "//base/allocator" ]
282 } 283 }
283 } 284 }
284 } 285 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698