Chromium Code Reviews| 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'test_support_content', | 8 'target_name': 'test_support_content', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'defines!': ['CONTENT_IMPLEMENTATION'], | 10 'defines!': ['CONTENT_IMPLEMENTATION'], |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 '../build/temp_gyp/googleurl.gyp:googleurl', | 12 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 13 'content_app', | 13 'content_app', |
| 14 'content_browser', | 14 'content_browser', |
| 15 'content_common', | 15 'content_common', |
| 16 '../media/media.gyp:media', | |
|
bryeung
2012/10/11 15:15:39
don't see how this is related to this CL
youngki
2012/10/11 16:21:18
content/public/test/content_test_suite_base.cc inc
bryeung
2012/10/11 17:00:00
In that case, I'd recommend taking this one line c
youngki
2012/10/11 17:28:53
Review sent as https://codereview.chromium.org/110
| |
| 16 '../net/net.gyp:net_test_support', | 17 '../net/net.gyp:net_test_support', |
| 17 '../skia/skia.gyp:skia', | 18 '../skia/skia.gyp:skia', |
| 18 '../testing/gmock.gyp:gmock', | 19 '../testing/gmock.gyp:gmock', |
| 19 '../testing/gtest.gyp:gtest', | 20 '../testing/gtest.gyp:gtest', |
| 20 '../ui/ui.gyp:ui_test_support', | 21 '../ui/ui.gyp:ui_test_support', |
| 21 ], | 22 ], |
| 22 'include_dirs': [ | 23 'include_dirs': [ |
| 23 '..', | 24 '..', |
| 24 ], | 25 ], |
| 25 'sources': [ | 26 'sources': [ |
| (...skipping 884 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 910 'java_in_dir': '../content/shell/android/javatests', | 911 'java_in_dir': '../content/shell/android/javatests', |
| 911 'resource_dir': '../res', | 912 'resource_dir': '../res', |
| 912 'additional_src_dirs': ['../content/public/android/javatests/'], | 913 'additional_src_dirs': ['../content/public/android/javatests/'], |
| 913 }, | 914 }, |
| 914 'includes': [ '../build/java_apk.gypi' ], | 915 'includes': [ '../build/java_apk.gypi' ], |
| 915 }, | 916 }, |
| 916 ], | 917 ], |
| 917 }], | 918 }], |
| 918 ], | 919 ], |
| 919 } | 920 } |
| OLD | NEW |