| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 ['use_x11==0', { | 6 ['use_x11==0', { |
| 7 'variables': { | 7 'variables': { |
| 8 'command': [ | 8 'command': [ |
| 9 '../testing/test_env.py', | 9 '../testing/test_env.py', |
| 10 '<(PRODUCT_DIR)/unit_tests<(EXECUTABLE_SUFFIX)', | 10 '<(PRODUCT_DIR)/unit_tests<(EXECUTABLE_SUFFIX)', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 }, | 35 }, |
| 36 }], | 36 }], |
| 37 ['OS=="android" or OS=="linux" or OS=="win" or OS=="mac"', { | 37 ['OS=="android" or OS=="linux" or OS=="win" or OS=="mac"', { |
| 38 'variables': { | 38 'variables': { |
| 39 'files': [ | 39 'files': [ |
| 40 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/google_now/', | 40 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/google_now/', |
| 41 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/print_preview/', | 41 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/print_preview/', |
| 42 '<(PRODUCT_DIR)/test_data/chrome/renderer/resources/extensions/', | 42 '<(PRODUCT_DIR)/test_data/chrome/renderer/resources/extensions/', |
| 43 '<(PRODUCT_DIR)/test_data/chrome/test/data/unit/', | 43 '<(PRODUCT_DIR)/test_data/chrome/test/data/unit/', |
| 44 '<(PRODUCT_DIR)/test_data/ui/webui/', | 44 '<(PRODUCT_DIR)/test_data/ui/webui/', |
| 45 ], |
| 46 }, |
| 47 }], |
| 48 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { |
| 49 'variables': { |
| 50 'files': [ |
| 45 '../base/test/data/', | 51 '../base/test/data/', |
| 46 '../components/test/data/', | 52 '../components/test/data/', |
| 47 '../extensions/test/data/', | 53 '../extensions/test/data/', |
| 48 '../google_apis/test/data/', | 54 '../google_apis/test/data/', |
| 49 '../net/data/', | 55 '../net/data/', |
| 50 '../third_party/accessibility-audit/axs_testing.js', | 56 '../third_party/accessibility-audit/axs_testing.js', |
| 51 '../third_party/chaijs/chai.js', | 57 '../third_party/chaijs/chai.js', |
| 52 '../third_party/hunspell_dictionaries/', | 58 '../third_party/hunspell_dictionaries/', |
| 53 '../third_party/zlib/google/test/data/', | 59 '../third_party/zlib/google/test/data/', |
| 54 '../tools/metrics/histograms/histograms.xml', | 60 '../tools/metrics/histograms/histograms.xml', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 76 }], | 82 }], |
| 77 ['OS=="linux" or OS=="mac" or OS=="win"', { | 83 ['OS=="linux" or OS=="mac" or OS=="win"', { |
| 78 'variables': { | 84 'variables': { |
| 79 'files': [ | 85 'files': [ |
| 80 '../net/tools/testserver/', | 86 '../net/tools/testserver/', |
| 81 '../testing/test_env.py', | 87 '../testing/test_env.py', |
| 82 '../third_party/pyftpdlib/', | 88 '../third_party/pyftpdlib/', |
| 83 '../third_party/pywebsocket/', | 89 '../third_party/pywebsocket/', |
| 84 '../third_party/tlslite/', | 90 '../third_party/tlslite/', |
| 85 '<(PRODUCT_DIR)/pyproto/google/', | 91 '<(PRODUCT_DIR)/pyproto/google/', |
| 86 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/md_downloads/', | |
| 87 ], | 92 ], |
| 88 }, | 93 }, |
| 89 }], | 94 }], |
| 90 ['OS=="linux" or OS=="mac"', { | 95 ['OS=="linux" or OS=="mac"', { |
| 91 'variables': { | 96 'variables': { |
| 92 'read_only': 1, | 97 'read_only': 1, |
| 93 }, | 98 }, |
| 94 }], | 99 }], |
| 95 ['OS=="mac"', { | 100 ['OS=="mac"', { |
| 96 'variables': { | 101 'variables': { |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 ], | 159 ], |
| 155 }, | 160 }, |
| 156 }], | 161 }], |
| 157 ], | 162 ], |
| 158 'includes': [ | 163 'includes': [ |
| 159 '../base/base.isolate', | 164 '../base/base.isolate', |
| 160 '../gin/v8.isolate', | 165 '../gin/v8.isolate', |
| 161 '../ui/gl/gl.isolate', | 166 '../ui/gl/gl.isolate', |
| 162 ], | 167 ], |
| 163 } | 168 } |
| OLD | NEW |