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

Side by Side Diff: chrome/browser/BUILD.gn

Issue 2432593002: [Offline Pages] Add basic evaluation tests and related changes. (Closed)
Patch Set: Fix build failure. 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 3354 matching lines...) Expand 10 before | Expand all | Expand 10 after
3365 "supervised_user/child_accounts/child_account_feedback_reporter_android. cc", 3365 "supervised_user/child_accounts/child_account_feedback_reporter_android. cc",
3366 "supervised_user/child_accounts/child_account_feedback_reporter_android. h", 3366 "supervised_user/child_accounts/child_account_feedback_reporter_android. h",
3367 "supervised_user/child_accounts/child_account_service_android.cc", 3367 "supervised_user/child_accounts/child_account_service_android.cc",
3368 "supervised_user/child_accounts/child_account_service_android.h", 3368 "supervised_user/child_accounts/child_account_service_android.h",
3369 ] 3369 ]
3370 } 3370 }
3371 3371
3372 # Used for testing only, should not be shipped to end users. 3372 # Used for testing only, should not be shipped to end users.
3373 if (!is_official_build) { 3373 if (!is_official_build) {
3374 sources += [ 3374 sources += [
3375 "android/offline_pages/evaluation/evaluation_test_scheduler.cc",
3376 "android/offline_pages/evaluation/evaluation_test_scheduler.h",
3375 "android/offline_pages/evaluation/offline_page_evaluation_bridge.cc", 3377 "android/offline_pages/evaluation/offline_page_evaluation_bridge.cc",
3376 "android/offline_pages/evaluation/offline_page_evaluation_bridge.h", 3378 "android/offline_pages/evaluation/offline_page_evaluation_bridge.h",
3377 ] 3379 ]
3378 } 3380 }
3379 } 3381 }
3380 3382
3381 if (enable_vr_shell || enable_webvr) { 3383 if (enable_vr_shell || enable_webvr) {
3382 if (enable_vr_shell) { 3384 if (enable_vr_shell) {
3383 defines += [ "ENABLE_VR_SHELL" ] 3385 defines += [ "ENABLE_VR_SHELL" ]
3384 } 3386 }
(...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after
4337 # linking all of the test support. 4339 # linking all of the test support.
4338 static_library("pepper_cdm_test_constants") { 4340 static_library("pepper_cdm_test_constants") {
4339 testonly = true 4341 testonly = true
4340 visibility = [ "//chrome/*" ] 4342 visibility = [ "//chrome/*" ]
4341 sources = [ 4343 sources = [
4342 "media/pepper_cdm_test_constants.cc", 4344 "media/pepper_cdm_test_constants.cc",
4343 "media/pepper_cdm_test_constants.h", 4345 "media/pepper_cdm_test_constants.h",
4344 ] 4346 ]
4345 } 4347 }
4346 } 4348 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698