forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AW: move variations code into separate folder
No change to logic. This moves WebView's variations code into separate folders with distinct OWNERS files, updates BUILD rules, and applies automatic code formatting from git-cl format. Test: autoninja -C out/Default system_webview_apk Test: run_webview_instrumentation_test_apk -f *Variations* Test: gn check out/Default android_webview/browser/variations:variations Test: gn check out/Default android_webview/browser:browser Change-Id: If405f2f840d37861d38f8d5b221ed5f2bc36de69 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2469356 Reviewed-by: Richard Coles <[email protected]> Reviewed-by: Changwan Ryu <[email protected]> Commit-Queue: Nate Fischer <[email protected]> Cr-Commit-Position: refs/heads/master@{#817130}
- Loading branch information
1 parent
d76ce9b
commit 8e5da69
Showing
19 changed files
with
62 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Copyright 2020 The Chromium Authors. All rights reserved. | ||
# Use of this source code is governed by a BSD-style license that can be | ||
# found in the LICENSE file. | ||
|
||
source_set("variations") { | ||
sources = [ | ||
"aw_variations_service_client.cc", | ||
"aw_variations_service_client.h", | ||
"variations_seed_loader.cc", | ||
"variations_seed_loader.h", | ||
] | ||
deps = [ | ||
"//android_webview:browser_jni_headers", | ||
"//android_webview/proto:aw_variations_seed_proto", | ||
"//components/variations", | ||
"//components/variations/net", | ||
"//components/variations/service", | ||
"//components/version_info/android:channel_getter", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
android_webview/java/src/org/chromium/android_webview/common/variations/OWNERS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
file://android_webview/browser/variations/OWNERS |
1 change: 1 addition & 0 deletions
1
android_webview/java/src/org/chromium/android_webview/variations/OWNERS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
file://android_webview/browser/variations/OWNERS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,7 @@ per-file [email protected] | |
per-file [email protected] | ||
per-file [email protected] | ||
per-file [email protected] | ||
|
||
# Variations | ||
per-file AwVariationsSeedFetcherTest*=file://android_webview/browser/variations/OWNERS | ||
per-file Variations*=file://android_webview/browser/variations/OWNERS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
android_webview/javatests/src/org/chromium/android_webview/test/services/OWNERS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
file://android_webview/nonembedded/OWNERS | ||
|
||
# Variations | ||
per-file MockVariationsSeedServer*=file://android_webview/browser/variations/OWNERS | ||
per-file VariationsSeedServerTest*=file://android_webview/browser/variations/OWNERS |