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

Side by Side Diff: extensions/BUILD.gn

Issue 2675033002: [Media Router] Add MediaSink subtypes (Closed)
Patch Set: use base::Optional instead of union to store extra data Created 3 years, 9 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 # Use of this source code is governed by a BSD-style license that can be 1 # Use of this source code is governed by a BSD-style license that can be
2 # found in the LICENSE file. 2 # found in the LICENSE file.
3 3
4 import("//extensions/features/features.gni") 4 import("//extensions/features/features.gni")
5 import("//testing/test.gni") 5 import("//testing/test.gni")
6 import("//tools/grit/grit_rule.gni") 6 import("//tools/grit/grit_rule.gni")
7 import("//tools/grit/repack.gni") 7 import("//tools/grit/repack.gni")
8 8
9 assert(enable_extensions) 9 assert(enable_extensions)
10 10
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 "-E", 49 "-E",
50 "mojom_root=" + rebase_path(root_gen_dir), 50 "mojom_root=" + rebase_path(root_gen_dir),
51 ] 51 ]
52 52
53 deps = [ 53 deps = [
54 "//chrome/browser/media/router:mojo_bindings__generator", 54 "//chrome/browser/media/router:mojo_bindings__generator",
55 "//device/serial:serial_mojo__generator", 55 "//device/serial:serial_mojo__generator",
56 "//extensions/common:mojo__generator", 56 "//extensions/common:mojo__generator",
57 "//extensions/common/api:mojom__generator", 57 "//extensions/common/api:mojom__generator",
58 "//mojo/common:common_custom_types__generator", 58 "//mojo/common:common_custom_types__generator",
59 "//url/mojo:url_mojom_gurl__generator",
59 "//url/mojo:url_mojom_origin__generator", 60 "//url/mojo:url_mojom_origin__generator",
60 ] 61 ]
61 } 62 }
62 63
63 static_library("test_support") { 64 static_library("test_support") {
64 testonly = true 65 testonly = true
65 sources = [ 66 sources = [
66 "browser/api/cast_channel/cast_test_util.cc", 67 "browser/api/cast_channel/cast_test_util.cc",
67 "browser/api/cast_channel/cast_test_util.h", 68 "browser/api/cast_channel/cast_test_util.h",
68 "browser/api/declarative/test_rules_registry.cc", 69 "browser/api/declarative/test_rules_registry.cc",
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
352 "//testing/gtest", 353 "//testing/gtest",
353 "//third_party/hunspell", 354 "//third_party/hunspell",
354 "//third_party/icu", 355 "//third_party/icu",
355 "//third_party/libpng", 356 "//third_party/libpng",
356 "//third_party/zlib", 357 "//third_party/zlib",
357 "//ui/base:test_support", 358 "//ui/base:test_support",
358 "//ui/resources:ui_test_pak", 359 "//ui/resources:ui_test_pak",
359 "//ui/web_dialogs:test_support", 360 "//ui/web_dialogs:test_support",
360 ] 361 ]
361 } 362 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698