Skip to content

Commit 7babaf0

Browse files
committed
Remove chromium
Signed-off-by: Matthew Burket <[email protected]>
1 parent 12008d7 commit 7babaf0

File tree

143 files changed

+8
-2437
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

143 files changed

+8
-2437
lines changed

.github/workflows/gate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
run: pip install -r requirements-base.txt -r test-requirements.txt
138138
- name: Build
139139
run: |-
140-
./build_product al2023 alinux2 alinux3 anolis23 anolis8 chromium fedora firefox ocp4 rhcos4 rhel8 rhel9 rhel10
140+
./build_product al2023 alinux2 alinux3 anolis23 anolis8 fedora firefox ocp4 rhcos4 rhel8 rhel9 rhel10
141141
env:
142142
ADDITIONAL_CMAKE_OPTIONS: "-DSSG_OVAL_SCHEMATRON_VALIDATION_ENABLED=OFF"
143143
- name: Test

.github/workflows/gate_fedora.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ jobs:
3131
almalinux9 \
3232
anolis23 \
3333
anolis8 \
34-
chromium \
3534
eks \
3635
example \
3736
fedora \

.gitpod.launch.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
"description": "Select Product Name",
1717
"type": "pickString",
1818
"options": [
19-
"chromium",
2019
"debian11", "debian12",
2120
"eap6",
2221
"fedora",

CMakeLists.txt

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ option(SSG_PRODUCT_ALINUX3 "If enabled, the Alibaba Cloud Linux 3 SCAP content w
9090
option(SSG_PRODUCT_ALMALINUX9 "If enabled, the AlmaLinux OS 9 SCAP content will be built" ${SSG_PRODUCT_DEFAULT})
9191
option(SSG_PRODUCT_ANOLIS8 "If enabled, the Anolis OS 8 SCAP content will be built" ${SSG_PRODUCT_DEFAULT})
9292
option(SSG_PRODUCT_ANOLIS23 "If enabled, the Anolis OS 23 SCAP content will be built" ${SSG_PRODUCT_DEFAULT})
93-
option(SSG_PRODUCT_CHROMIUM "If enabled, the Chromium SCAP content will be built" ${SSG_PRODUCT_DEFAULT})
9493
option(SSG_PRODUCT_DEBIAN11 "If enabled, the Debian 11 SCAP content will be built" ${SSG_PRODUCT_DEFAULT})
9594
option(SSG_PRODUCT_DEBIAN12 "If enabled, the Debian 12 SCAP content will be built" ${SSG_PRODUCT_DEFAULT})
9695
option(SSG_PRODUCT_DEBIAN13 "If enabled, the Debian 13 SCAP content will be built" ${SSG_PRODUCT_DEFAULT})
@@ -328,7 +327,6 @@ message(STATUS "Alibaba Cloud Linux 3: ${SSG_PRODUCT_ALINUX3}")
328327
message(STATUS "AlmaLinux OS 9: ${SSG_PRODUCT_ALMALINUX9}")
329328
message(STATUS "Anolis OS 8: ${SSG_PRODUCT_ANOLIS8}")
330329
message(STATUS "Anolis OS 23: ${SSG_PRODUCT_ANOLIS23}")
331-
message(STATUS "Chromium: ${SSG_PRODUCT_CHROMIUM}")
332330
message(STATUS "Debian 11: ${SSG_PRODUCT_DEBIAN11}")
333331
message(STATUS "Debian 12: ${SSG_PRODUCT_DEBIAN12}")
334332
message(STATUS "Debian 13: ${SSG_PRODUCT_DEBIAN13}")
@@ -400,10 +398,6 @@ endif()
400398
if(SSG_PRODUCT_ANOLIS23)
401399
add_subdirectory("products/anolis23" "anolis23")
402400
endif()
403-
if(SSG_PRODUCT_CHROMIUM)
404-
add_subdirectory("products/chromium" "chromium")
405-
endif()
406-
407401
if(SSG_PRODUCT_DEBIAN11)
408402
add_subdirectory("products/debian11" "debian11")
409403
endif()

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
The purpose of this project is to create *security policy content* for various
1111
platforms &mdash; *Red Hat Enterprise Linux*, *Fedora*, *Ubuntu*, *Debian*, *SUSE Linux Enterprise Server (SLES)*,... &mdash;
12-
as well as products &mdash; *Firefox*, *Chromium*, ...
12+
as well as products &mdash; *Firefox*,...
1313
We aim to make it as easy as possible to write new and maintain existing
1414
security content in all the commonly used formats.
1515

build_product

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,6 @@ all_cmake_products=(
333333
ALMALINUX9
334334
ANOLIS23
335335
ANOLIS8
336-
CHROMIUM
337336
DEBIAN11
338337
DEBIAN12
339338
DEBIAN13

docs/manual/developer/03_creating_content.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,6 @@ multiple benchmarks in our project:
151151
<td><p>Firefox</p></td>
152152
<td><p><code>/products/firefox/guide</code></p></td>
153153
</tr>
154-
<tr class="odd">
155-
<td><p>Chromium</p></td>
156-
<td><p><code>/products/chromium/guide</code></p></td>
157-
</tr>
158154
</tbody>
159155
</table>
160156

@@ -353,7 +349,6 @@ endif()
353349
<pre>
354350
...
355351
all_cmake_products=(
356-
CHROMIUM
357352
DEBIAN11
358353
<b>CUSTOM6</b>
359354
EAP6
@@ -366,14 +361,13 @@ all_cmake_products=(
366361
product_directories = ['debian11', 'fedora', 'ol7', 'ol8', 'opensuse',
367362
'rhel8', 'rhel9', 'sle12',
368363
'ubuntu2404', 'rhosp13',
369-
'chromium', 'eap6', 'firefox',
364+
'eap6', 'firefox',
370365
'example'<b>, 'custom6'</b>]
371366
...
372367
</pre>
373368
<pre>
374369
...
375370
FULL_NAME_TO_PRODUCT_MAPPING = {
376-
"Chromium": "chromium",
377371
"Debian 11": "debian11",
378372
"Custom 6": "custom6",
379373
"JBoss EAP 6": "eap6",
@@ -400,7 +394,6 @@ MULTI_PLATFORM_MAPPING = {
400394
<pre>
401395
...
402396
MAKEFILE_ID_TO_PRODUCT_MAP = {
403-
'chromium': 'Google Chromium Browser',
404397
'fedora': 'Fedora',
405398
'firefox': 'Mozilla Firefox',
406399
'rhosp': 'Red Hat OpenStack Platform',

docs/manual/user/30_content_notes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Below is list of products that have been removed from the project.
66
| Product | EOL Date | Last Release |
77
|----------------------------------------------|--------------------|------------------------------------------------------------------------------------|
88
| Apple macOS 10.15 | - | [content 0.1.76](https://github.com/ComplianceAsCode/content/releases/tag/v0.1.76) |
9+
| Google Chromium | - | [content 0.1.78](https://github.com/ComplianceAsCode/content/releases/tag/v0.1.78) |
910
| Debian 8 | June 30, 2020 | [content 0.1.52](https://github.com/ComplianceAsCode/content/releases/tag/v0.1.52) |
1011
| Debian 9 | June 30, 2022 | [content 0.1.65](https://github.com/ComplianceAsCode/content/releases/tag/v0.1.65) |
1112
| Debian 10 | June 30, 2024 | [content 0.1.73](https://github.com/ComplianceAsCode/content/releases/tag/v0.1.73) |

products/chromium/CMakeLists.txt

Lines changed: 0 additions & 6 deletions
This file was deleted.

products/chromium/guide/benchmark.yml

Lines changed: 0 additions & 53 deletions
This file was deleted.

0 commit comments

Comments
 (0)