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

Side by Side Diff: media/cast/cast.gyp

Issue 162103002: Cast: Added a EncodingEventSubscriber to cast sender app. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@encoding-event-subscriber
Patch Set: Created 6 years, 10 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'variables': { 6 'variables': {
7 'include_tests%': 1, 7 'include_tests%': 1,
8 'chromium_code': 1, 8 'chromium_code': 1,
9 }, 9 },
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'cast_config', 12 'target_name': 'cast_config',
13 'type': 'static_library', 13 'type': 'static_library',
14 'include_dirs': [ 14 'include_dirs': [
15 '<(DEPTH)/', 15 '<(DEPTH)/',
16 ], 16 ],
17 'dependencies': [ 17 'dependencies': [
18 'cast_logging_proto_lib', 18 'cast_logging_proto_lib',
19 '<(DEPTH)/base/base.gyp:base', 19 '<(DEPTH)/base/base.gyp:base',
20 ], 20 ],
21 'export_dependent_settings': [
22 'cast_logging_proto_lib',
23 ],
21 'sources': [ 24 'sources': [
22 'cast_config.cc', 25 'cast_config.cc',
23 'cast_config.h', 26 'cast_config.h',
24 'cast_defines.h', 27 'cast_defines.h',
25 'cast_environment.cc', 28 'cast_environment.cc',
26 'cast_environment.h', 29 'cast_environment.h',
27 'logging/encoding_event_subscriber.cc', 30 'logging/encoding_event_subscriber.cc',
28 'logging/encoding_event_subscriber.h', 31 'logging/encoding_event_subscriber.h',
29 'logging/logging_defines.cc', 32 'logging/logging_defines.cc',
30 'logging/logging_defines.h', 33 'logging/logging_defines.h',
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 'variables': { 182 'variables': {
180 'proto_in_dir': 'logging/proto', 183 'proto_in_dir': 'logging/proto',
181 'proto_out_dir': 'media/cast/logging/proto', 184 'proto_out_dir': 'media/cast/logging/proto',
182 }, 185 },
183 'includes': ['../../build/protoc.gypi'], 186 'includes': ['../../build/protoc.gypi'],
184 }, 187 },
185 ], # targets 188 ], # targets
186 }], # include_tests 189 }], # include_tests
187 ], 190 ],
188 } 191 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698