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

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

Issue 833963003: Pass key_information on SessionKeysChange message (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: GN changes 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("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/linux/pkg_config.gni") 8 import("//build/config/linux/pkg_config.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 10
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 "buffering_state.h", 56 "buffering_state.h",
57 "buffers.h", 57 "buffers.h",
58 "byte_queue.cc", 58 "byte_queue.cc",
59 "byte_queue.h", 59 "byte_queue.h",
60 "cdm_callback_promise.cc", 60 "cdm_callback_promise.cc",
61 "cdm_callback_promise.h", 61 "cdm_callback_promise.h",
62 "cdm_context.cc", 62 "cdm_context.cc",
63 "cdm_context.h", 63 "cdm_context.h",
64 "cdm_factory.cc", 64 "cdm_factory.cc",
65 "cdm_factory.h", 65 "cdm_factory.h",
66 "cdm_key_information.cc",
67 "cdm_key_information.h",
66 "cdm_promise.cc", 68 "cdm_promise.cc",
67 "cdm_promise.h", 69 "cdm_promise.h",
68 "channel_mixer.cc", 70 "channel_mixer.cc",
69 "channel_mixer.h", 71 "channel_mixer.h",
70 "channel_mixing_matrix.cc", 72 "channel_mixing_matrix.cc",
71 "channel_mixing_matrix.h", 73 "channel_mixing_matrix.h",
72 "clock.h", 74 "clock.h",
73 "data_buffer.cc", 75 "data_buffer.cc",
74 "data_buffer.h", 76 "data_buffer.h",
75 "data_source.cc", 77 "data_source.cc",
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 if (is_posix) { 463 if (is_posix) {
462 yasm_flags += [ "-DELF" ] 464 yasm_flags += [ "-DELF" ]
463 if (cpu_arch == "x64") { 465 if (cpu_arch == "x64") {
464 # TODO(ajwong): Why isn't this true in mac? 466 # TODO(ajwong): Why isn't this true in mac?
465 yasm_flags += [ "-DPIC" ] 467 yasm_flags += [ "-DPIC" ]
466 } 468 }
467 } 469 }
468 } 470 }
469 } 471 }
470 } 472 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698