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

Side by Side Diff: media/BUILD.gn

Issue 915403003: Enable size_t to int truncation warnings in PPAPI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « no previous file | ppapi/BUILD.gn » ('j') | ppapi/proxy/file_ref_resource.cc » ('J')
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/linux/pkg_config.gni") 8 import("//build/config/linux/pkg_config.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 "formats/mp4/es_descriptor_unittest.cc", 629 "formats/mp4/es_descriptor_unittest.cc",
630 "formats/mp4/mp4_stream_parser_unittest.cc", 630 "formats/mp4/mp4_stream_parser_unittest.cc",
631 "formats/mp4/sample_to_group_iterator_unittest.cc", 631 "formats/mp4/sample_to_group_iterator_unittest.cc",
632 "formats/mp4/track_run_iterator_unittest.cc", 632 "formats/mp4/track_run_iterator_unittest.cc",
633 "formats/mpeg/adts_stream_parser_unittest.cc", 633 "formats/mpeg/adts_stream_parser_unittest.cc",
634 "formats/mpeg/mpeg1_audio_stream_parser_unittest.cc", 634 "formats/mpeg/mpeg1_audio_stream_parser_unittest.cc",
635 ] 635 ]
636 } 636 }
637 637
638 if (is_win && cpu_arch == "x64") { 638 if (is_win && cpu_arch == "x64") {
639 cflags += [ "/wd4267" ] # TODO(wolenetz): Fix size_t to int trunctaion in w in64. See 639 cflags = [ "/wd4267" ] # TODO(wolenetz): Fix size_t to int trunctaion in wi n64. See
640 # http://crbug.com/171009 640 # http://crbug.com/171009
dmichael (off chromium) 2015/02/12 18:56:43 This change probably belongs in a different CL?
brettw 2015/02/12 21:09:34 This change started as a GN build fix. This was th
641 } 641 }
642 642
643 if (is_mac || is_ios) { 643 if (is_mac || is_ios) {
644 deps += [ "//media/base/mac" ] 644 deps += [ "//media/base/mac" ]
645 } 645 }
646 646
647 if (is_mac) { 647 if (is_mac) {
648 sources += 648 sources +=
649 [ "video/capture/mac/video_capture_device_factory_mac_unittest.mm" ] 649 [ "video/capture/mac/video_capture_device_factory_mac_unittest.mm" ]
650 } 650 }
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
776 deps = [ 776 deps = [
777 ":media", 777 ":media",
778 ":shared_memory_support", 778 ":shared_memory_support",
779 "//base", 779 "//base",
780 "//ui/gl", 780 "//ui/gl",
781 "//ui/gfx", 781 "//ui/gfx",
782 "//ui/gfx/geometry", 782 "//ui/gfx/geometry",
783 ] 783 ]
784 } 784 }
785 } 785 }
OLDNEW
« no previous file with comments | « no previous file | ppapi/BUILD.gn » ('j') | ppapi/proxy/file_ref_resource.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698