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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/chromevox_tests.gypi

Issue 461633002: Refactor language detection logic to allow non-static CLD data sources. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge error in chrome/browser/BUILD.gn 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 | Annotate | Revision Log
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 { 5 {
6 'includes': [ 6 'includes': [
7 '../../../../js_unittest_vars.gypi', 7 '../../../../js_unittest_vars.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'chromevox_test_deps_js_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/re sources/chromeos/chromevox/test_deps.js', 10 'chromevox_test_deps_js_file': '<(SHARED_INTERMEDIATE_DIR)/chrome/browser/re sources/chromeos/chromevox/test_deps.js',
(...skipping 12 matching lines...) Expand all
23 '<(DEPTH)/chrome/chrome.gyp:test_support_common', 23 '<(DEPTH)/chrome/chrome.gyp:test_support_common',
24 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', 24 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources',
25 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', 25 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings',
26 '<(DEPTH)/chrome/chrome_resources.gyp:packed_extra_resources', 26 '<(DEPTH)/chrome/chrome_resources.gyp:packed_extra_resources',
27 '<(DEPTH)/chrome/chrome_resources.gyp:packed_resources', 27 '<(DEPTH)/chrome/chrome_resources.gyp:packed_resources',
28 '<(DEPTH)/testing/gmock.gyp:gmock', 28 '<(DEPTH)/testing/gmock.gyp:gmock',
29 '<(DEPTH)/testing/gtest.gyp:gtest', 29 '<(DEPTH)/testing/gtest.gyp:gtest',
30 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', 30 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
31 'chromevox_test_deps_js', 31 'chromevox_test_deps_js',
32 ], 32 ],
33 'conditions': [
34 [ 'cld_version==2', {
35 'dependencies': [
36 # Interactive tests should use whatever CLD2 data access mode that
37 # the application embedder is using.
38 '../../../../../third_party/cld_2/cld_2.gyp:cld2_platform_impl', ],
39 }],
40 ],
33 'defines': [ 41 'defines': [
34 'HAS_OUT_OF_PROC_TEST_RUNNER', 42 'HAS_OUT_OF_PROC_TEST_RUNNER',
35 ], 43 ],
36 'include_dirs': [ 44 'include_dirs': [
37 '<(DEPTH)', 45 '<(DEPTH)',
38 '<(SHARED_INTERMEDIATE_DIR)', 46 '<(SHARED_INTERMEDIATE_DIR)',
39 ], 47 ],
40 'rules': [ 48 'rules': [
41 { 49 {
42 # A JavaScript test that runs in an environment similar to a webui 50 # A JavaScript test that runs in an environment similar to a webui
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 '<@(js_files)', 230 '<@(js_files)',
223 ], 231 ],
224 }, 232 },
225 ], 233 ],
226 'dependencies': [ 234 'dependencies': [
227 'chromevox_test_messages_js', 235 'chromevox_test_messages_js',
228 ], 236 ],
229 }, # target chromevox_test_deps_js 237 }, # target chromevox_test_deps_js
230 ], 238 ],
231 } 239 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698