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

Side by Side Diff: Source/platform/BUILD.gn

Issue 635443002: Make platform depend on openmax_dl. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | 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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 6 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
7 import("//third_party/WebKit/Source/config.gni") 7 import("//third_party/WebKit/Source/config.gni")
8 import("//third_party/WebKit/Source/platform/platform.gni") 8 import("//third_party/WebKit/Source/platform/platform.gni")
9 import("//third_party/WebKit/Source/platform/platform_generated.gni") 9 import("//third_party/WebKit/Source/platform/platform_generated.gni")
10 10
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 if (cpu_arch == "arm") { 304 if (cpu_arch == "arm") {
305 deps += [ ":blink_arm_neon" ] 305 deps += [ ":blink_arm_neon" ]
306 } 306 }
307 307
308 if (use_webaudio_ffmpeg) { 308 if (use_webaudio_ffmpeg) {
309 include_dirs += [ "//third_party/ffmpeg" ] 309 include_dirs += [ "//third_party/ffmpeg" ]
310 deps += [ "//third_party/ffmpeg" ] 310 deps += [ "//third_party/ffmpeg" ]
311 } 311 }
312 if (use_openmax_dl_fft) { 312 if (use_openmax_dl_fft) {
313 include_dirs += [ "//third_party/openmax_dl" ] 313 include_dirs += [ "//third_party/openmax_dl" ]
314 # TODO(GYP) 314 deps += [ "//third_party/openmax_dl/dl" ]
315 # deps += [ "//third_party/openmax_dl/dl" ]
316 } 315 }
317 } 316 }
318 317
319 test("heap_unittests") { 318 test("heap_unittests") {
320 visibility = [] # Allow re-assignment of list. 319 visibility = [] # Allow re-assignment of list.
321 visibility = [ "//third_party/WebKit/*" ] 320 visibility = [ "//third_party/WebKit/*" ]
322 output_name = "blink_heap_unittests" 321 output_name = "blink_heap_unittests"
323 322
324 sources = rebase_path(heap_gypi.platform_heap_test_files, ".", "heap") 323 sources = rebase_path(heap_gypi.platform_heap_test_files, ".", "heap")
325 sources += [ "heap/RunAllTests.cpp" ] 324 sources += [ "heap/RunAllTests.cpp" ]
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 #'cflags': ['-marm'], 390 #'cflags': ['-marm'],
392 # 'conditions': [ 391 # 'conditions': [
393 # ['OS=="android"', { 392 # ['OS=="android"', {
394 # 'cflags!': ['-mthumb'], 393 # 'cflags!': ['-mthumb'],
395 # }], 394 # }],
396 # ], 395 # ],
397 396
398 deps = [ ":blink_common" ] 397 deps = [ ":blink_common" ]
399 } 398 }
400 } 399 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698