| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'command': [ | 8 'command': [ |
| 9 '<(PRODUCT_DIR)/content_gl_tests<(EXECUTABLE_SUFFIX)', | 9 '<(PRODUCT_DIR)/content_gl_tests<(EXECUTABLE_SUFFIX)', |
| 10 ], | 10 ], |
| 11 'files': [ |
| 12 '<(PRODUCT_DIR)/content_gl_tests<(EXECUTABLE_SUFFIX)', |
| 13 ], |
| 11 }, | 14 }, |
| 12 }], | 15 }], |
| 13 # TODO(kbr): these two dependencies seem to be necessary when | 16 # TODO(kbr): these two dependencies seem to be necessary when |
| 14 # running the component build to avoid "Failed to mmap datapack" | 17 # running the component build to avoid "Failed to mmap datapack" |
| 15 # errors. Should investigate further. | 18 # errors. Should investigate further. |
| 16 ['OS=="linux" or OS=="win"', { | 19 ['OS=="linux" or OS=="win"', { |
| 17 'variables': { | 20 'variables': { |
| 18 'files': [ | 21 'files': [ |
| 19 '<(PRODUCT_DIR)/content_resources.pak', | 22 '<(PRODUCT_DIR)/content_resources.pak', |
| 20 '<(PRODUCT_DIR)/ui_test.pak', | 23 '<(PRODUCT_DIR)/ui_test.pak', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 47 '<(PRODUCT_DIR)/content.dll.pdb', | 50 '<(PRODUCT_DIR)/content.dll.pdb', |
| 48 ], | 51 ], |
| 49 }, | 52 }, |
| 50 }], | 53 }], |
| 51 ], | 54 ], |
| 52 'includes': [ | 55 'includes': [ |
| 53 '../base/base.isolate', | 56 '../base/base.isolate', |
| 54 '../gin/v8.isolate', | 57 '../gin/v8.isolate', |
| 55 ], | 58 ], |
| 56 } | 59 } |
| OLD | NEW |