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

Side by Side Diff: media/blink/BUILD.gn

Issue 1430063003: use MEDIA_BLINK_EXPORT in media/blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
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("//media/media_options.gni") 5 import("//media/media_options.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("blink") { 8 component("blink") {
9 output_name = "media_blink" 9 output_name = "media_blink"
10 10
11 deps = [ 11 deps = [
12 "//base", 12 "//base",
13 "//cc", 13 "//cc",
14 "//cc/blink", 14 "//cc/blink",
15 "//gpu/blink", 15 "//gpu/blink",
16 "//media", 16 "//media",
17 "//media:shared_memory_support", 17 "//media:shared_memory_support",
18 "//net", 18 "//net",
19 "//skia", 19 "//skia",
20 "//third_party/WebKit/public:blink", 20 "//third_party/WebKit/public:blink",
21 "//ui/gfx", 21 "//ui/gfx",
22 "//ui/gfx/geometry", 22 "//ui/gfx/geometry",
23 "//url", 23 "//url",
24 ] 24 ]
25 25
26 defines = [ "MEDIA_IMPLEMENTATION" ] 26 defines = [ "MEDIA_BLINK_IMPLEMENTATION" ]
27 27
28 sources = [ 28 sources = [
xhwang 2015/11/06 23:43:18 Please add media_blink_export.h to the gyp/gn file
hubbe 2015/11/06 23:52:11 Done.
29 "active_loader.cc", 29 "active_loader.cc",
30 "active_loader.h", 30 "active_loader.h",
31 "buffered_data_source.cc", 31 "buffered_data_source.cc",
32 "buffered_data_source.h", 32 "buffered_data_source.h",
33 "buffered_data_source_host_impl.cc", 33 "buffered_data_source_host_impl.cc",
34 "buffered_data_source_host_impl.h", 34 "buffered_data_source_host_impl.h",
35 "buffered_resource_loader.cc", 35 "buffered_resource_loader.cc",
36 "buffered_resource_loader.h", 36 "buffered_resource_loader.h",
37 "cache_util.cc", 37 "cache_util.cc",
38 "cache_util.h", 38 "cache_util.h",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 } 130 }
131 131
132 # TODO(GYP): Delete this after we've converted everything to GN. 132 # TODO(GYP): Delete this after we've converted everything to GN.
133 # The _run targets exist only for compatibility w/ GYP. 133 # The _run targets exist only for compatibility w/ GYP.
134 group("media_blink_unittests_run") { 134 group("media_blink_unittests_run") {
135 testonly = true 135 testonly = true
136 deps = [ 136 deps = [
137 ":media_blink_unittests", 137 ":media_blink_unittests",
138 ] 138 ]
139 } 139 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698