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

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

Issue 2432593002: [Offline Pages] Add basic evaluation tests and related changes. (Closed)
Patch Set: Created 4 years, 2 months 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 3344 matching lines...) Expand 10 before | Expand all | Expand 10 after
3355 "supervised_user/child_accounts/child_account_feedback_reporter_android. cc", 3355 "supervised_user/child_accounts/child_account_feedback_reporter_android. cc",
3356 "supervised_user/child_accounts/child_account_feedback_reporter_android. h", 3356 "supervised_user/child_accounts/child_account_feedback_reporter_android. h",
3357 "supervised_user/child_accounts/child_account_service_android.cc", 3357 "supervised_user/child_accounts/child_account_service_android.cc",
3358 "supervised_user/child_accounts/child_account_service_android.h", 3358 "supervised_user/child_accounts/child_account_service_android.h",
3359 ] 3359 ]
3360 } 3360 }
3361 3361
3362 # Used for testing only, should not be shipped to end users. 3362 # Used for testing only, should not be shipped to end users.
3363 if (!is_official_build) { 3363 if (!is_official_build) {
3364 sources += [ 3364 sources += [
3365 "android/offline_pages/evaluation/evaluation_test_scheduler.cc",
3366 "android/offline_pages/evaluation/evaluation_test_scheduler.h",
3365 "android/offline_pages/evaluation/offline_page_evaluation_bridge.cc", 3367 "android/offline_pages/evaluation/offline_page_evaluation_bridge.cc",
3366 "android/offline_pages/evaluation/offline_page_evaluation_bridge.h", 3368 "android/offline_pages/evaluation/offline_page_evaluation_bridge.h",
3367 ] 3369 ]
3368 } 3370 }
3369 } 3371 }
3370 3372
3371 if (enable_vr_shell || enable_webvr) { 3373 if (enable_vr_shell || enable_webvr) {
3372 if (enable_vr_shell) { 3374 if (enable_vr_shell) {
3373 defines += [ "ENABLE_VR_SHELL" ] 3375 defines += [ "ENABLE_VR_SHELL" ]
3374 } 3376 }
(...skipping 949 matching lines...) Expand 10 before | Expand all | Expand 10 after
4324 # linking all of the test support. 4326 # linking all of the test support.
4325 static_library("pepper_cdm_test_constants") { 4327 static_library("pepper_cdm_test_constants") {
4326 testonly = true 4328 testonly = true
4327 visibility = [ "//chrome/*" ] 4329 visibility = [ "//chrome/*" ]
4328 sources = [ 4330 sources = [
4329 "media/pepper_cdm_test_constants.cc", 4331 "media/pepper_cdm_test_constants.cc",
4330 "media/pepper_cdm_test_constants.h", 4332 "media/pepper_cdm_test_constants.h",
4331 ] 4333 ]
4332 } 4334 }
4333 } 4335 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698