diff options
Diffstat (limited to 'testing/gtest.gyp')
-rw-r--r-- | testing/gtest.gyp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/testing/gtest.gyp b/testing/gtest.gyp index 061667e..c7d5c62 100644 --- a/testing/gtest.gyp +++ b/testing/gtest.gyp @@ -3,6 +3,9 @@ # found in the LICENSE file. { + 'variables': { + 'chromium_code': 1, + }, 'includes': [ '../build/common.gypi', ], @@ -53,7 +56,8 @@ 'UNIT_TEST', ], 'include_dirs': [ - 'gtest/include', # So that gtest headers can find themselves. + 'gtest', + 'gtest/include', ], 'target_conditions': [ ['_type=="executable"', {'test': 1}], |