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

Side by Side Diff: content/test/test_blink_web_unit_test_support.cc

Issue 2463863002: Fix gn check for headless release static config (Closed)
Patch Set: proper fix Created 4 years, 1 month 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
« no previous file with comments | « content/public/test/content_test_suite_base.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #include "content/test/test_blink_web_unit_test_support.h" 5 #include "content/test/test_blink_web_unit_test_support.h"
6 6
7 #include "base/feature_list.h" 7 #include "base/feature_list.h"
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "base/files/file_util.h" 9 #include "base/files/file_util.h"
10 #include "base/files/scoped_temp_dir.h" 10 #include "base/files/scoped_temp_dir.h"
(...skipping 27 matching lines...) Expand all
38 #include "third_party/WebKit/public/web/WebNetworkStateNotifier.h" 38 #include "third_party/WebKit/public/web/WebNetworkStateNotifier.h"
39 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h" 39 #include "third_party/WebKit/public/web/WebRuntimeFeatures.h"
40 #include "v8/include/v8.h" 40 #include "v8/include/v8.h"
41 41
42 #if defined(OS_MACOSX) 42 #if defined(OS_MACOSX)
43 #include "base/mac/foundation_util.h" 43 #include "base/mac/foundation_util.h"
44 #include "base/mac/scoped_nsautorelease_pool.h" 44 #include "base/mac/scoped_nsautorelease_pool.h"
45 #endif 45 #endif
46 46
47 #ifdef V8_USE_EXTERNAL_STARTUP_DATA 47 #ifdef V8_USE_EXTERNAL_STARTUP_DATA
48 #include "gin/v8_initializer.h" 48 #include "gin/v8_initializer.h" // nogncheck
49 #endif 49 #endif
50 50
51 #if defined(ENABLE_WEBRTC) 51 #if defined(ENABLE_WEBRTC)
52 #include "content/renderer/media/rtc_certificate.h" 52 #include "content/renderer/media/rtc_certificate.h"
53 #include "third_party/WebKit/public/platform/WebRTCCertificateGenerator.h" 53 #include "third_party/WebKit/public/platform/WebRTCCertificateGenerator.h"
54 #include "third_party/webrtc/base/rtccertificate.h" 54 #include "third_party/webrtc/base/rtccertificate.h"
55 #endif 55 #endif
56 56
57 namespace { 57 namespace {
58 58
(...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 blink::WebRTCCertificateGenerator* 349 blink::WebRTCCertificateGenerator*
350 TestBlinkWebUnitTestSupport::createRTCCertificateGenerator() { 350 TestBlinkWebUnitTestSupport::createRTCCertificateGenerator() {
351 #if defined(ENABLE_WEBRTC) 351 #if defined(ENABLE_WEBRTC)
352 return new TestWebRTCCertificateGenerator(); 352 return new TestWebRTCCertificateGenerator();
353 #else 353 #else
354 return nullptr; 354 return nullptr;
355 #endif 355 #endif
356 } 356 }
357 357
358 } // namespace content 358 } // namespace content
OLDNEW
« no previous file with comments | « content/public/test/content_test_suite_base.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698