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

Side by Side Diff: content/content_unittests.isolate

Issue 663413002: Reland 597923002: Fix the way how we create webrtc::AudioProcessing in Chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed two extra empty line caused by rebasing 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 | « content/content_tests.gypi ('k') | content/renderer/media/media_stream_audio_processor.cc » ('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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 'conditions': [ 5 'conditions': [
6 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { 6 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
7 'variables': { 7 'variables': {
8 'files': [ 8 'files': [
9 '../media/test/data/', 9 '../media/test/data/',
10 'test/data/', 10 'test/data/',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 ], 51 ],
52 }, 52 },
53 }], 53 }],
54 ['OS=="linux" and use_ozone==0', { 54 ['OS=="linux" and use_ozone==0', {
55 'variables': { 55 'variables': {
56 'files': [ 56 'files': [
57 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', 57 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
58 ], 58 ],
59 }, 59 },
60 }], 60 }],
61 ['OS=="linux" and libpeer_target_type=="loadable_module"', {
62 'variables': {
63 'isolate_dependency_tracked': [
64 '<(PRODUCT_DIR)/lib/libpeerconnection.so',
65 ],
66 },
67 }],
61 ['OS=="mac"', { 68 ['OS=="mac"', {
62 'variables': { 69 'variables': {
63 'command': [ 70 'command': [
64 '../testing/test_env.py', 71 '../testing/test_env.py',
65 '<(PRODUCT_DIR)/content_unittests<(EXECUTABLE_SUFFIX)', 72 '<(PRODUCT_DIR)/content_unittests<(EXECUTABLE_SUFFIX)',
66 '--brave-new-test-launcher', 73 '--brave-new-test-launcher',
67 '--test-launcher-bot-mode', 74 '--test-launcher-bot-mode',
68 '--asan=<(asan)', 75 '--asan=<(asan)',
69 '--lsan=<(lsan)', 76 '--lsan=<(lsan)',
70 ], 77 ],
(...skipping 19 matching lines...) Expand all
90 ], 97 ],
91 }, 98 },
92 }], 99 }],
93 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { 100 ['OS=="win" and (fastbuild==0 or fastbuild==1)', {
94 'variables': { 101 'variables': {
95 'files': [ 102 'files': [
96 '<(PRODUCT_DIR)/content_unittests.exe.pdb', 103 '<(PRODUCT_DIR)/content_unittests.exe.pdb',
97 ], 104 ],
98 }, 105 },
99 }], 106 }],
107 ['OS=="win" and libpeer_target_type=="loadable_module"', {
108 'variables': {
109 'isolate_dependency_tracked': [
110 '<(PRODUCT_DIR)/libpeerconnection.dll',
111 ],
112 },
113 }],
100 ], 114 ],
101 'includes': [ 115 'includes': [
102 '../base/base.isolate', 116 '../base/base.isolate',
103 ], 117 ],
104 } 118 }
OLDNEW
« no previous file with comments | « content/content_tests.gypi ('k') | content/renderer/media/media_stream_audio_processor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698