| OLD | NEW |
| 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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 "//media/base/mac", | 333 "//media/base/mac", |
| 334 ] | 334 ] |
| 335 libs += [ | 335 libs += [ |
| 336 "CoreMIDI.framework", | 336 "CoreMIDI.framework", |
| 337 "CoreVideo.framework", | 337 "CoreVideo.framework", |
| 338 "OpenGL.framework", | 338 "OpenGL.framework", |
| 339 "QTKit.framework", | 339 "QTKit.framework", |
| 340 ] | 340 ] |
| 341 } | 341 } |
| 342 | 342 |
| 343 if (is_ios) { |
| 344 deps += [ |
| 345 "//media/base/mac", |
| 346 ] |
| 347 } |
| 348 |
| 343 if (is_win) { | 349 if (is_win) { |
| 344 libs += [ | 350 libs += [ |
| 345 "mf.lib", | 351 "mf.lib", |
| 346 "mfplat.lib", | 352 "mfplat.lib", |
| 347 "mfreadwrite.lib", | 353 "mfreadwrite.lib", |
| 348 "mfuuid.lib", | 354 "mfuuid.lib", |
| 349 ] | 355 ] |
| 350 cflags += [ | 356 cflags += [ |
| 351 "/wd4267" # TODO(wolenetz): Fix size_t to int trunctaion in win64. See | 357 "/wd4267" # TODO(wolenetz): Fix size_t to int trunctaion in win64. See |
| 352 # http://crbug.com/171009 | 358 # http://crbug.com/171009 |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 java_cpp_template("media_android_imageformat_list") { | 746 java_cpp_template("media_android_imageformat_list") { |
| 741 sources = [ | 747 sources = [ |
| 742 "base/android/java/src/org/chromium/media/ImageFormat.template", | 748 "base/android/java/src/org/chromium/media/ImageFormat.template", |
| 743 ] | 749 ] |
| 744 inputs = [ | 750 inputs = [ |
| 745 "video/capture/android/imageformat_list.h" | 751 "video/capture/android/imageformat_list.h" |
| 746 ] | 752 ] |
| 747 package_name = "org/chromium/media" | 753 package_name = "org/chromium/media" |
| 748 } | 754 } |
| 749 } | 755 } |
| OLD | NEW |