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

Side by Side Diff: extensions/BUILD.gn

Issue 652313002: Enable the mojo-based serial API in the renderer behind a flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo-js-natives-registration
Patch Set: fix windows build Created 6 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
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 # GYP version: extensions/extensions_resources.gyp:extensions_resources 8 # GYP version: extensions/extensions_resources.gyp:extensions_resources
9 group("extensions_resources") { 9 group("extensions_resources") {
10 deps = [ 10 deps = [
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 "common/value_builder.cc", 87 "common/value_builder.cc",
88 "common/value_builder.h", 88 "common/value_builder.h",
89 "renderer/test_extensions_renderer_client.cc", 89 "renderer/test_extensions_renderer_client.cc",
90 "renderer/test_extensions_renderer_client.h", 90 "renderer/test_extensions_renderer_client.h",
91 "test/extension_test_message_listener.cc", 91 "test/extension_test_message_listener.cc",
92 "test/extension_test_message_listener.h", 92 "test/extension_test_message_listener.h",
93 "test/test_extensions_client.cc", 93 "test/test_extensions_client.cc",
94 "test/test_extensions_client.h", 94 "test/test_extensions_client.h",
95 "test/test_permission_message_provider.cc", 95 "test/test_permission_message_provider.cc",
96 "test/test_permission_message_provider.h", 96 "test/test_permission_message_provider.h",
97 "test/test_service_registration_manager.cc",
98 "test/test_service_registration_manager.h",
97 ] 99 ]
98 100
99 deps = [ 101 deps = [
100 ":extensions_resources", 102 ":extensions_resources",
101 "//base", 103 "//base",
102 "//content/public/browser", 104 "//content/public/browser",
103 "//content/public/common", 105 "//content/public/common",
104 "//content/test:test_support", 106 "//content/test:test_support",
105 "//extensions/browser", 107 "//extensions/browser",
106 "//extensions/common", 108 "//extensions/common",
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 272
271 if (is_win) { 273 if (is_win) {
272 deps += [ 274 deps += [
273 "//base/allocator", 275 "//base/allocator",
274 ] 276 ]
275 } 277 }
276 } 278 }
277 } 279 }
278 280
279 } 281 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698