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

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

Issue 1246083005: Work on Windows GN allocator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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
« no previous file with comments | « build/config/allocator.gni ('k') | no next file » | 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 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 202
203 allow_circular_includes_from = [] 203 allow_circular_includes_from = []
204 defines = [] 204 defines = []
205 public_deps = [] 205 public_deps = []
206 deps = [ 206 deps = [
207 "//ui/events:events_base", 207 "//ui/events:events_base",
208 "//skia", 208 "//skia",
209 ] 209 ]
210 libs = [] 210 libs = []
211 configs += [ 211 configs += [
212 # This target uses the ALLOCATOR_SHIM define.
213 "//base/allocator:allocator_shim_define",
212 "//media:media_config", 214 "//media:media_config",
213 "//media:media_implementation", 215 "//media:media_implementation",
214 ] 216 ]
215 217
216 if (media_use_ffmpeg) { 218 if (media_use_ffmpeg) {
217 sources += [ 219 sources += [
218 "audio_video_metadata_extractor.cc", 220 "audio_video_metadata_extractor.cc",
219 "audio_video_metadata_extractor.h", 221 "audio_video_metadata_extractor.h",
220 "container_names.cc", 222 "container_names.cc",
221 "container_names.h", 223 "container_names.h",
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 if (is_posix) { 521 if (is_posix) {
520 yasm_flags += [ "-DELF" ] 522 yasm_flags += [ "-DELF" ]
521 if (current_cpu == "x64") { 523 if (current_cpu == "x64") {
522 # TODO(ajwong): Why isn't this true in mac? 524 # TODO(ajwong): Why isn't this true in mac?
523 yasm_flags += [ "-DPIC" ] 525 yasm_flags += [ "-DPIC" ]
524 } 526 }
525 } 527 }
526 } 528 }
527 } 529 }
528 } 530 }
OLDNEW
« no previous file with comments | « build/config/allocator.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698