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

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

Issue 2568663002: [WIP] - trying out some state machine ideas.
Patch Set: added SimpleStateMachine, updated example Created 4 years 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
« no previous file with comments | « no previous file | media/base/simple_state_machine.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 "serial_runner.cc", 214 "serial_runner.cc",
215 "serial_runner.h", 215 "serial_runner.h",
216 "silent_sink_suspender.cc", 216 "silent_sink_suspender.cc",
217 "silent_sink_suspender.h", 217 "silent_sink_suspender.h",
218 "simd/convert_rgb_to_yuv.h", 218 "simd/convert_rgb_to_yuv.h",
219 "simd/convert_rgb_to_yuv_c.cc", 219 "simd/convert_rgb_to_yuv_c.cc",
220 "simd/convert_yuv_to_rgb.h", 220 "simd/convert_yuv_to_rgb.h",
221 "simd/convert_yuv_to_rgb_c.cc", 221 "simd/convert_yuv_to_rgb_c.cc",
222 "simd/filter_yuv.h", 222 "simd/filter_yuv.h",
223 "simd/filter_yuv_c.cc", 223 "simd/filter_yuv_c.cc",
224 "simple_state_machine.h",
224 "sinc_resampler.cc", 225 "sinc_resampler.cc",
225 "sinc_resampler.h", 226 "sinc_resampler.h",
227 "state.cc",
228 "state.h",
229 "state_machine.cc",
230 "state_machine.h",
231 "state_machine_driver.cc",
232 "state_machine_driver.h",
233 "state_machine_example.cc",
226 "stream_parser.cc", 234 "stream_parser.cc",
227 "stream_parser.h", 235 "stream_parser.h",
228 "stream_parser_buffer.cc", 236 "stream_parser_buffer.cc",
229 "stream_parser_buffer.h", 237 "stream_parser_buffer.h",
230 "subsample_entry.h", 238 "subsample_entry.h",
231 "surface_manager.h", 239 "surface_manager.h",
232 "text_cue.cc", 240 "text_cue.cc",
233 "text_cue.h", 241 "text_cue.h",
234 "text_ranges.cc", 242 "text_ranges.cc",
235 "text_ranges.h", 243 "text_ranges.h",
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 624
617 fuzzer_test("media_container_names_fuzzer") { 625 fuzzer_test("media_container_names_fuzzer") {
618 sources = [ 626 sources = [
619 "container_names_fuzzertest.cc", 627 "container_names_fuzzertest.cc",
620 ] 628 ]
621 deps = [ 629 deps = [
622 "//base", 630 "//base",
623 "//media", 631 "//media",
624 ] 632 ]
625 } 633 }
OLDNEW
« no previous file with comments | « no previous file | media/base/simple_state_machine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698