-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBazel Configurability Roadmap - Bazel_single.html
More file actions
8370 lines (6214 loc) · 372 KB
/
Copy pathBazel Configurability Roadmap - Bazel_single.html
File metadata and controls
8370 lines (6214 loc) · 372 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
From: <Saved by Blink>
Snapshot-Content-Location: http://localhost:12345/roadmaps/2019/configuration.html
Subject: Bazel Configurability Roadmap - Bazel
Date: Fri, 17 Jan 2020 22:13:55 -0000
MIME-Version: 1.0
Content-Type: multipart/related;
type="text/html";
boundary="----MultipartBoundary--kaRchY5BbOFxasisMjPzCQ8SHMH9Zo5uTJDI6xtTNb----"
------MultipartBoundary--kaRchY5BbOFxasisMjPzCQ8SHMH9Zo5uTJDI6xtTNb----
Content-Type: text/html
Content-ID: <frame-A4258AB984C264495673ABCB05627B88@mhtml.blink>
Content-Transfer-Encoding: quoted-printable
Content-Location: http://localhost:12345/roadmaps/2019/configuration.html
<!DOCTYPE html><html lang=3D"en" itemscope=3D"" itemtype=3D"https://schema.=
org/WebPage"><head><meta http-equiv=3D"Content-Type" content=3D"text/html; =
charset=3DUTF-8"><link rel=3D"stylesheet" type=3D"text/css" href=3D"cid:css=
-9905a4f3-7448-4efb-8f62-cbfc1287850c@mhtml.blink" /><link rel=3D"styleshee=
t" type=3D"text/css" href=3D"cid:css-01716c80-cd63-41f0-962e-279d0c587c31@m=
html.blink" />
=20
<meta http-equiv=3D"X-UA-Compatible" content=3D"IE=3Dedge">
<meta name=3D"viewport" content=3D"width=3Ddevice-width, initial-scale=
=3D1">
<title>Bazel Configurability Roadmap - Bazel</title>
=20
<link rel=3D"canonical" href=3D"http://localhost:12345/roadmaps/2019/co=
nfiguration.html">
<!-- Webfont -->
<link href=3D"http://fonts.googleapis.com/css?family=3DRoboto:300,400,5=
00|Source+Code+Pro:400,500,700" rel=3D"stylesheet">
<link rel=3D"icon" type=3D"image/png" href=3D"http://localhost:12345/im=
ages/favicon-32x32.png" sizes=3D"32x32">
<link rel=3D"icon" type=3D"image/png" href=3D"http://localhost:12345/im=
ages/favicon-16x16.png" sizes=3D"16x16">
<!-- Bootstrap -->
<link href=3D"http://localhost:12345/assets/css/bootstrap.min.css" rel=
=3D"stylesheet">
<link href=3D"http://localhost:12345/assets/css/font-awesome.min.css" r=
el=3D"stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and me=
dia queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// =
-->
<!--[if lt IE 9]>
<script src=3D"https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.j=
s"></script>
<script src=3D"https://oss.maxcdn.com/respond/1.4.2/respond.min.js"><=
/script>
<![endif]-->
<!-- Custom stylesheet -->
<link rel=3D"stylesheet" type=3D"text/css" href=3D"http://localhost:123=
45/css/main.css">
<!-- metadata -->
<meta name=3D"og:title" content=3D"Bazel Configurability Roadmap">
<meta name=3D"og:image" content=3D"https://bazel.build/images/bazel-og-=
image.png">
</head>
<body>
<nav id=3D"common-nav" class=3D"navbar navbar-inverse navbar-fixed-=
top">
<div class=3D"container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class=3D"navbar-header">
<button type=3D"button" class=3D"navbar-toggle collapsed" data-to=
ggle=3D"collapse" data-target=3D"#bs-example-navbar-collapse-1">
<span class=3D"sr-only">Toggle navigation</span>
<span class=3D"icon-bar"></span>
<span class=3D"icon-bar"></span>
<span class=3D"icon-bar"></span>
</button>
<a class=3D"navbar-brand" href=3D"http://localhost:12345/">
<img class=3D"navbar-logo" src=3D"http://localhost:12345/images=
/bazel-navbar.svg">
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -=
->
<div class=3D"collapse navbar-collapse" id=3D"bs-example-navbar-col=
lapse-1">
<ul class=3D"nav navbar-nav navbar-right">
<li>
<a href=3D"https://github.com/bazelbuild/bazel">
<span class=3D"hidden-sm">GitHub</span>
<span class=3D"nav-icon visible-sm"><i class=3D"fa fa-githu=
b"></i></span>
</a>
</li>
</ul>
<form class=3D"navbar-form navbar-right" action=3D"http://localho=
st:12345/search.html" id=3D"cse-search-box">
<div class=3D"form-group">
=20
=20
=20
<input type=3D"search" name=3D"q" id=3D"q" class=3D"form-cont=
rol input-sm" placeholder=3D"Search">
</div>
</form>
<ul class=3D"nav navbar-nav navbar-right">
<li>
<a href=3D"https://docs.bazel.build/">Documentation</a>
</li>
<li>
<a href=3D"http://localhost:12345/contributing.html">Contribu=
te</a>
</li>
<li>
<a href=3D"https://blog.bazel.build/">
<span class=3D"hidden-sm">Blog</span>
<span class=3D"nav-icon visible-sm"><i class=3D"fa fa-rss">=
</i></span>
</a>
</li>
<li>
<a href=3D"https://twitter.com/bazelbuild">
<span class=3D"visible-xs">Twitter</span>
<span><i class=3D"nav-icon fa fa-twitter hidden-xs"></i></s=
pan>
</a>
</li>
<li>
<a href=3D"http://stackoverflow.com/questions/tagged/bazel">
<span class=3D"visible-xs">StackOverflow</span>
<span><i class=3D"nav-icon fa fa-stack-overflow hidden-xs">=
</i></span>
</a>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class=3D"page-title-bar">
<div class=3D"container">
<h1 id=3D"contribute">Contribute<a class=3D"anchorjs-link " href=3D=
"http://localhost:12345/roadmaps/2019/configuration.html#contribute" aria-l=
abel=3D"Anchor link for: contribute" data-anchorjs-icon=3D"=EE=A7=8B" style=
=3D"font-family: anchorjs-icons; font-style: normal; font-variant: normal; =
font-weight: normal; line-height: 1; padding-left: 0.375em;"></a></h1>
</div>
</div>
<div class=3D"container vpad">
<div class=3D"row">
<div class=3D"col-lg-3">
<a class=3D"btn btn-default btn-lg btn-block sidebar-toggle" data=
-toggle=3D"collapse" href=3D"http://localhost:12345/roadmaps/2019/configura=
tion.html#sidebar-nav" aria-expanded=3D"false" aria-controls=3D"sidebar-nav=
">
<i class=3D"glyphicon glyphicon-menu-hamburger"></i> Navigation
</a>
<nav class=3D"sidebar collapse" id=3D"sidebar-nav">
<ul class=3D"sidebar-nav">
<li><a href=3D"http://localhost:12345/contributing.html">Cont=
ributing to Bazel</a></li>
<li><a href=3D"https://github.com/bazelbuild/bazel/wiki/Bazel=
-Users">Who's Using Bazel</a></li>
<li><a href=3D"http://localhost:12345/governance.html">Govern=
ance</a></li>
<li><a href=3D"http://localhost:12345/roadmap.html">Roadmap</=
a></li>
<li><a href=3D"http://localhost:12345/naming.html">Naming Baz=
el projects</a></li>
<li><a href=3D"http://localhost:12345/support.html">Support</=
a></li>
</ul>
<h3 id=3D"technical-docs">Technical Docs<a class=3D"anchorjs-li=
nk " href=3D"http://localhost:12345/roadmaps/2019/configuration.html#techni=
cal-docs" aria-label=3D"Anchor link for: technical docs" data-anchorjs-icon=
=3D"=EE=A7=8B" style=3D"font-family: anchorjs-icons; font-style: normal; fo=
nt-variant: normal; font-weight: normal; line-height: 1; padding-left: 0.37=
5em;"></a></h3>
<ul class=3D"sidebar-nav">
<li><a href=3D"http://localhost:12345/designs/skyframe.html">=
Skyframe</a></li>
<li><a href=3D"http://localhost:12345/maintainers-guide.html"=
>Guide for Bazel Maintainers</a></li>
<li><a href=3D"http://localhost:12345/designs/index.html">Des=
ign Documents</a></li>
<li><a href=3D"http://localhost:12345/breaking-changes-guide.=
html">Rolling out breaking changes</a></li>
<li><a href=3D"http://localhost:12345/release-notes.html">Rel=
ease Notes</a></li>
<li><a href=3D"http://localhost:12345/recommended-rules.html"=
>Recommended Rules</a></li>
<li><a href=3D"http://localhost:12345/windows-chocolatey-main=
tenance.html">Maintaining Bazel Chocolatey package on Windows</a></li>
<li><a href=3D"http://localhost:12345/windows-scoop-maintenan=
ce.html">Maintaining Bazel Scoop package on Windows</a></li>
</ul>
<h3 id=3D"external-resources">External Resources<a class=3D"anc=
horjs-link " href=3D"http://localhost:12345/roadmaps/2019/configuration.htm=
l#external-resources" aria-label=3D"Anchor link for: external resources" da=
ta-anchorjs-icon=3D"=EE=A7=8B" style=3D"font-family: anchorjs-icons; font-s=
tyle: normal; font-variant: normal; font-weight: normal; line-height: 1; pa=
dding-left: 0.375em;"></a></h3>
<ul class=3D"sidebar-nav">
<li><a href=3D"https://github.com/bazelbuild/bazel">GitHub</a=
></li>
<li><a href=3D"https://source.bazel.build/">Search Bazel code=
</a></li>
<li><a href=3D"http://localhost:12345/browse-and-search-user-=
guide.html">Search user guide</a></li>
<li><a href=3D"https://groups.google.com/forum/#!forum/bazel-=
dev">Developer mailing list</a></li>
<li><a href=3D"https://slack.bazel.build/">Slack</a></li>
<li><a href=3D"http://localhost:12345/experts.html">Community=
Experts</a></li>
</ul>
</nav>
</div>
<div class=3D"col-lg-9">
=20
<h1 id=3D"bazel-configurability-2019-roadmap">Bazel Configurability 2019 Ro=
admap<a class=3D"anchorjs-link " href=3D"http://localhost:12345/roadmaps/20=
19/configuration.html#bazel-configurability-2019-roadmap" aria-label=3D"Anc=
hor link for: bazel configurability 2019 roadmap" data-anchorjs-icon=3D"=EE=
=A7=8B" style=3D"font-family: anchorjs-icons; font-style: normal; font-vari=
ant: normal; font-weight: normal; line-height: 1; padding-left: 0.375em;"><=
/a></h1>
<p><em>Last verified: 2020-01-17</em> (<a href=3D"https://github.com/bazelb=
uild/bazel-website/commits/master/roadmaps/configuration.md">update history=
</a>)</p>
<p><em>Point of contact:</em> <a href=3D"https://github.com/gregestren">gre=
gestren</a></p>
<p><em>Discuss:</em> <a href=3D"https://github.com/bazelbuild/bazel/issues=
/6431">Configurability roadmap: discussion</a></p>
<p><strong>This roadmap has been retired. See <a href=3D"http://localhost:1=
2345/roadmaps/configuration.html">here</a> for the current roadmap.</strong=
></p>
<h2 id=3D"previous-roadmaps">Previous roadmaps<a class=3D"anchorjs-link " h=
ref=3D"http://localhost:12345/roadmaps/2019/configuration.html#previous-roa=
dmaps" aria-label=3D"Anchor link for: previous roadmaps" data-anchorjs-icon=
=3D"=EE=A7=8B" style=3D"font-family: anchorjs-icons; font-style: normal; fo=
nt-variant: normal; font-weight: normal; line-height: 1; padding-left: 0.37=
5em;"></a></h2>
<ul>
<li><a href=3D"http://localhost:12345/roadmaps/2018/configuration.html">2=
018</a></li>
</ul>
<h2 id=3D"eoy-review">EOY Review<a class=3D"anchorjs-link " href=3D"http://=
localhost:12345/roadmaps/2019/configuration.html#eoy-review" aria-label=3D"=
Anchor link for: eoy review" data-anchorjs-icon=3D"=EE=A7=8B" style=3D"font=
-family: anchorjs-icons; font-style: normal; font-variant: normal; font-wei=
ght: normal; line-height: 1; padding-left: 0.375em;"></a></h2>
<p><em>Status as of Jan 2020:</em></p>
<p>Platforms:</p>
<ul>
<li>C++ rules support the new <a href=3D"https://docs.bazel.build/version=
s/master/platforms-intro.html">platforms
API</a>. Deferred
<a href=3D"https://github.com/bazelbuild/bazel/issues/7260">enabling</a> by=
default since
depending Android and iOS projects
<a href=3D"https://github.com/bazelbuild/bazel/issues/8716">break</a>.</li>
<li>Java rules support the new platforms API. <a href=3D"https://github.c=
om/bazelbuild/rules_java/pull/8">Actual platform
definitions</a> remain pending.</li>
<li>To enable C++ and Java support in 2020, we=E2=80=99ll use <a href=3D"=
https://docs.bazel.build/versions/master/platforms-intro.html#how-to-use-pl=
atforms-today">platform
mappings</a>
to manage Android / iOS integration. We=E2=80=99ll need help from project
owners to ensure we don=E2=80=99t break them.</li>
<li>Lesson learned: global rollout is an involved cross-team effort.</li>
</ul>
<p>User-defined configuration:</p>
<ul>
<li><a href=3D"https://docs.bazel.build/versions/master/skylark/config.ht=
ml">Starlark build
configuration</a>
is v1.0 feature-complete: the core API is working and stable.</li>
<li>Some features will continue to need bake-in time
(<a href=3D"https://github.com/bazelbuild/bazel/issues/10499">example</a>).=
We=E2=80=99ll
prioritize these as individual feature requests vs. a larger overarching ef=
fort.</li>
</ul>
<p>Efficiency:</p>
<ul>
<li>Due to an unanticipated temporary developer squeeze, this work stalle=
d in
Q4 to support basic maintenance (API bug fixes, cquery support, etc.).</li>
<li>As of 2020 the squeeze is over. Trimming and caching efforts will ram=
p up in
earnest starting Q1.</li>
</ul>
<p>Collaboration:</p>
<ul>
<li>Extensive collaboration with <a href=3D"https://github.com/AustinSchu=
h">Austin Schuh</a> produced <a href=3D"https://docs.google.com/document/d/=
12n5QNHmFSkuh5yAbdEex64ot4hRgR-moL1zRimU7wHQ/edit?ts=3D5dfbe2fe">platform-i=
ncompatible target skipping</a> design. Implementation help wanted!</li>
</ul>
<h2 id=3D"goal">Goal<a class=3D"anchorjs-link " href=3D"http://localhost:12=
345/roadmaps/2019/configuration.html#goal" aria-label=3D"Anchor link for: g=
oal" data-anchorjs-icon=3D"=EE=A7=8B" style=3D"font-family: anchorjs-icons;=
font-style: normal; font-variant: normal; font-weight: normal; line-height=
: 1; padding-left: 0.375em;"></a></h2>
<p><strong><code class=3D"highlighter-rouge">$ bazel build :all</code></str=
ong> <strong><em>just works</em></strong>, for whatever platform(s) you bui=
ld for.</p>
<ul>
<li>Targets =E2=80=9Cknow=E2=80=9D how to build themselves. For example, =
an <code class=3D"highlighter-rouge">android_binary</code> automatically ch=
ooses the right SDK.</li>
<li>Builds don=E2=80=99t require command-line flags.</li>
<li>Any target can be built with any other. For example, a binary=E2=80=
=99s <em>Mac</em> and <em>Linux</em> versions can be built in the same comm=
and.</li>
<li>Dependencies can build differently than their parents. For example, a=
test builds helper binaries without debug symbols.</li>
<li>All rule logic and related flags are user-defined. Nothing requires a=
Bazel release.</li>
<li>Builds can target any platform or any mix of platforms. Nothing requi=
res a Bazel release.</li>
<li>These features scale well for large builds.</li>
</ul>
<h2 id=3D"roadmap">Roadmap<a class=3D"anchorjs-link " href=3D"http://localh=
ost:12345/roadmaps/2019/configuration.html#roadmap" aria-label=3D"Anchor li=
nk for: roadmap" data-anchorjs-icon=3D"=EE=A7=8B" style=3D"font-family: anc=
horjs-icons; font-style: normal; font-variant: normal; font-weight: normal;=
line-height: 1; padding-left: 0.375em;"></a></h2>
<p>Dates are approximate based on our best understanding of problem complex=
ity
and developer availability. Dates represent expected availability in releas=
ed
Bazel. If a feature requires an <a href=3D"https://docs.bazel.build/version=
s/master/backward-compatibility.html#incompatible-changes-and-migration-rec=
ipes">incompatible
flag</a>,
dates represent the first time the feature can be used, even if it requires=
=20
setting the flag before it=E2=80=99s on by default. ETAs will change, but w=
e=E2=80=99ll keep
them refreshed and current.</p>
<h3 id=3D"platforms">Platforms<a class=3D"anchorjs-link " href=3D"http://lo=
calhost:12345/roadmaps/2019/configuration.html#platforms" aria-label=3D"Anc=
hor link for: platforms" data-anchorjs-icon=3D"=EE=A7=8B" style=3D"font-fam=
ily: anchorjs-icons; font-style: normal; font-variant: normal; font-weight:=
normal; line-height: 1; padding-left: 0.375em;"></a></h3>
<p>Also see the <a href=3D"http://localhost:12345/roadmaps/2019/platforms.h=
tml">Platforms Roadmap</a> for detailed priorities.</p>
<div class=3D"padbottom"></div>
<p><span class=3D"etabox">Jun 2019</span><strong>C++ rules fully support
<a href=3D"https://docs.bazel.build/versions/master/platforms.html">platfor=
ms</a> and
<a href=3D"https://docs.bazel.build/versions/master/toolchains.html">toolch=
ains</a></strong>
<span class=3D"inprogressstatus">PARTIALLY DONE</span> (<a href=3D"https://=
github.com/bazelbuild/bazel/issues/6516">#6516</a>)</p>
<ul>
<li>This gives them first-class Starlark support, <code class=3D"highligh=
ter-rouge">select()</code> <a href=3D"https://docs.bazel.build/versions/mas=
ter/be/general.html#config_setting.constraint_values">on
platforms</a>,
and configuration via
<a href=3D"https://docs.bazel.build/versions/master/platforms.html#specifyi=
ng-a-platform-for-a-build">--platforms</a></li>
<li>Sets best practices for adding platform and toolchain support to othe=
r rules</li>
</ul>
<div class=3D"padbottom"></div>
<p><span class=3D"etabox">Jun 2019</span><strong>Java rules fully support
<a href=3D"https://docs.bazel.build/versions/master/platforms.html">platfor=
ms</a> and
<a href=3D"https://docs.bazel.build/versions/master/toolchains.html">toolch=
ains</a></strong>
<span class=3D"inprogressstatus">PARTIALLY DONE</span> (<a href=3D"https://=
github.com/bazelbuild/bazel/issues/6521">#6521</a>)</p>
<div class=3D"padbottom"></div>
<p><span class=3D"etabox">Jun 2019</span><strong>There=E2=80=99s <em>one</e=
m> standard way to select platforms
at the command line</strong>
<a href=3D"https://bazel.build/roadmaps/platforms.html#replace---cpu-and---=
host_cpu-flags">see status</a> (<a href=3D"https://github.com/bazelbuild/ba=
zel/issues/6518">#6518</a>)</p>
<ul>
<li><code class=3D"highlighter-rouge">$ bazel build //a:myrule --platform=
s=3D@bazel_tools/platforms:mac</code></li>
<li><code class=3D"highlighter-rouge">--cpu</code>, <code class=3D"highli=
ghter-rouge">--host_cpu</code>, <code class=3D"highlighter-rouge">--crossto=
ol_top</code>, <code class=3D"highlighter-rouge">--javabase</code>, <code c=
lass=3D"highlighter-rouge">--apple_crosstool_top</code>, etc. are deprecate=
d</li>
</ul>
<div class=3D"padbottom"></div>
<p><span class=3D"etabox">Jun 2019</span><strong>Legacy flags like <code cl=
ass=3D"highlighter-rouge">--cpu</code> automatically set <code class=3D"hig=
hlighter-rouge">--platform</code> while the former are removed</strong>
<span class=3D"donestatus">DONE</span> (<a href=3D"https://docs.bazel.build=
/versions/master/platforms-intro.html#platform-mappings">w/ opt
in</a>)
(<a href=3D"https://github.com/bazelbuild/bazel/issues/6426">#6426</a>)</p>
<ul>
<li>This prevents <code class=3D"highlighter-rouge">.bazelrc</code>s, <co=
de class=3D"highlighter-rouge">select()</code>s on <code class=3D"highlight=
er-rouge">--cpu</code>, and legacy command lines from breaking as rules ado=
pt platforms</li>
<li>Rules can get platforms=E2=80=99 benefits without having to wait on m=
igration</li>
</ul>
<div class=3D"padbottom"></div>
<p><span class=3D"etabox">Aug 2019</span><strong>All supported Bazel rules =
support=20
<a href=3D"https://docs.bazel.build/versions/master/platforms.html">platfor=
ms</a> and
<a href=3D"https://docs.bazel.build/versions/master/toolchains.html">toolch=
ains</a></strong>
<span class=3D"inprogressstatus">DONE FOR PYTHON</span></p>
<ul>
<li>Python: <a href=3D"https://github.com/bazelbuild/bazel/issues/7375">#=
7375</a></li>
</ul>
<div class=3D"padbottom"></div>
<p><span class=3D"etabox">late 2019</span><strong>Flagless multiplatform bu=
ilds
(unoptimized)</strong>
<span class=3D"notstartedstatus">NOT STARTED</span> (<a href=3D"https://git=
hub.com/bazelbuild/bazel/issues/6519">#6519</a>)</p>
<ul>
<li>
<div class=3D"language-sh highlighter-rouge"><div class=3D"highlight"><=
pre class=3D"highlight"><code> <span class=3D"nv">$ </span><span class=
=3D"nb">cat </span>a/BUILD
cc_binary<span class=3D"o">(</span>name <span class=3D"o">=3D</span> =
<span class=3D"s2">"app_for_linux"</span>, platforms <span class=3D"o">=3D<=
/span> <span class=3D"o">[</span><span class=3D"s2">"//platforms:linux"</sp=
an><span class=3D"o">])</span>
cc_binary<span class=3D"o">(</span>name <span class=3D"o">=3D</span> =
<span class=3D"s2">"app_for_mac"</span>, platforms <span class=3D"o">=3D</s=
pan> <span class=3D"o">[</span><span class=3D"s2">"//platforms:mac"</span><=
span class=3D"o">])</span>
<span class=3D"nv">$ </span>bazel build //a:all <span class=3D"c"># N=
o command line flags!</span>
</code></pre></div> </div>
</li>
<li><em>Unoptimized</em> means <a href=3D"http://localhost:12345/roadmaps=
/2019/configuration.html#efficiency">memory and performance</a> issues may =
not be resolved</li>
</ul>
<h3 id=3D"user-defined-build-settings">User-Defined Build Settings<a class=
=3D"anchorjs-link " href=3D"http://localhost:12345/roadmaps/2019/configurat=
ion.html#user-defined-build-settings" aria-label=3D"Anchor link for: user d=
efined build settings" data-anchorjs-icon=3D"=EE=A7=8B" style=3D"font-famil=
y: anchorjs-icons; font-style: normal; font-variant: normal; font-weight: n=
ormal; line-height: 1; padding-left: 0.375em;"></a></h3>
<p>See <a href=3D"https://docs.google.com/document/d/1vc8v-kXjvgZOdQdnxPTaV=
0rrLxtP2XwnD2tAZlYJOqw/edit?usp=3Dsharing">Starlark Build Configuration</a>=
for in-depth motivation and design.</p>
<div class=3D"padbottom"></div>
<p><span class=3D"etabox">Mar 2019</span><strong>Starlark supports custom c=
onfiguration transitions</strong>
<span class=3D"donestatus">DONE</span> (<a href=3D"http://github.com/bazelb=
uild/bazel/issues/5574#issuecomment-458349702">#5574</a>)</p>
<ul>
<li>Rule designers can have rules change their flags or their dependencie=
s=E2=80=99 flags</li>
<li>This may have <a href=3D"http://localhost:12345/roadmaps/2019/configu=
ration.html#efficiency">memory and performance</a> consequences</li>
</ul>
<div class=3D"padbottom"></div>
<p><span class=3D"etabox">Jul 2019</span><strong>Starlark supports <a href=
=3D"https://docs.google.com/document/d/1VIRx06cZB4wLU-ASq1XKFHmx67yfHtNOCbC=
empaPeaA/edit">fancy</a> transitions</strong>
<span class=3D"donestatus">DONE</span> (<a href=3D"http://github.com/bazelb=
uild/bazel/issues/5574">#5574</a>)</p>
<ul>
<li>Transitions can read a rule=E2=80=99s attributes to determine what to=
change</li>
<li>Transitions on a rule can read attributes with <code class=3D"highlig=
hter-rouge">select()</code></li>
</ul>
<div class=3D"padbottom"></div>
<p><span class=3D"etabox">Jul 2019</span><strong>Starlark supports user-def=
ined build settings</strong>
<span class=3D"donestatus">DONE</span> (<a href=3D"http://github.com/bazelb=
uild/bazel/issues/5577">#5577</a>)</p>
<ul>
<li>
<p>A standard API defines how to declare custom settings. This consolid=
ates <a href=3D"https://docs.bazel.build/versions/master/command-line-refer=
ence.html">command
line
flags</a>,
<a href=3D"https://github.com/bazelbuild/bazel/blob/master/src/main/java/co=
m/google/devtools/build/lib/rules/apple/AppleCommandLineOptions.java#L246">=
=E2=80=9Csecret=E2=80=9D
flags</a>,
<a href=3D"https://github.com/bazelbuild/bazel/blob/b3cf83cd20f30d77e6768de=
651a3e652f86d6f78/src/main/java/com/google/devtools/build/lib/analysis/conf=
ig/BuildConfiguration.java#L423">=E2=80=93define</a>,
<a href=3D"https://source.bazel.build/bazel/+/master:src/main/java/com/goog=
le/devtools/build/lib/analysis/config/BuildConfiguration.java;l=3D835?q=3Df=
ile:BuildConfiguration.java">=E2=80=93features</a>,
and <a href=3D"https://github.com/bazelbuild/bazel/blob/d6a98282e229b311dd5=
6e65b72003197120f299a/src/test/java/com/google/devtools/build/lib/rules/and=
roid/AndroidBinaryTest.java#L3107">feature
flags</a>).</p>
</li>
<li>All hard-coded Bazel flags can be migrated to this API. Actual migrat=
ion may
not have begun.</li>
<li>End users (i.e. non-rule designers) can=E2=80=99t customize settings.=
For end users, we want to start
by seeing how far we can get with <a href=3D"https://docs.bazel.build/versi=
ons/master/platforms.html#specifying-a-platform-for-a-build"><code class=3D=
"highlighter-rouge">--platforms</code></a> and <a href=3D"https://github.co=
m/bazelbuild/bazel/blob/d6a98282e229b311dd56e65b72003197120f299a/src/test/j=
ava/com/google/devtools/build/lib/rules/android/AndroidBinaryTest.java#L310=
7">feature
flags</a>.</li>
</ul>
<div class=3D"padbottom"></div>
<p><span class=3D"etabox">Jul 2019</span><strong>All native Bazel rules can=
be implemented
in Starlark</strong>
<span class=3D"donestatus">DONE</span> (<a href=3D"http://github.com/bazelb=
uild/bazel/issues/5578">#5578</a>)</p>
<ul>
<li>This automatically comes out of user-defined build settings and custo=
m transitions</li>
</ul>
<h3 id=3D"efficiency">Efficiency<a class=3D"anchorjs-link " href=3D"http://=
localhost:12345/roadmaps/2019/configuration.html#efficiency" aria-label=3D"=
Anchor link for: efficiency" data-anchorjs-icon=3D"=EE=A7=8B" style=3D"font=
-family: anchorjs-icons; font-style: normal; font-variant: normal; font-wei=
ght: normal; line-height: 1; padding-left: 0.375em;"></a></h3>
<div class=3D"padbottom"></div>
<p><span class=3D"etabox">May 2019</span><strong>An experimental Bazel mode=
automatically
shrinks build graphs</strong>
<span class=3D"donestatus">DONE</span> (<a href=3D"https://github.com/bazel=
build/bazel/issues/6524">#6524</a>)</p>
<ul>
<li>No rule builds twice when unrelated flags change</li>
<li>Building the <em>Mac</em> and <em>Linux</em> versions of a binary at =
the same time doesn=E2=80=99t double the build graph</li>
</ul>
<div class=3D"padbottom"></div>
<p><span class=3D"etabox">Jul 2019</span><strong>This mode automatically op=
timizes <a href=3D"https://github.com/bazelbuild/bazel/issues/5579">test
trimming</a> and <a href=3D"https://github.com/bazelbuild/bazel/blob/d6a982=
82e229b311dd56e65b72003197120f299a/src/test/java/com/google/devtools/build/=
lib/rules/android/AndroidBinaryTest.java#L3107">feature flags</a></strong>
<span class=3D"inprogressstatus">PARTIALLY DONE</span> (<a href=3D"https://=
github.com/bazelbuild/bazel/issues/6524">#6524</a>)</p>
<ul>
<li>No rule builds twice when unrelated flags change</li>
<li>Building the <em>Mac</em> and <em>Linux</em> versions of a binary at =
the same time doesn=E2=80=99t double the build graph</li>
</ul>
<div class=3D"padbottom"></div>
<p><span class=3D"etabox">Jul 2019</span><strong>An experimental Bazel mode=
makes identical actions unique</strong>
<span class=3D"inprogressstatus">PARTIALLY DONE</span> (<a href=3D"https://=
github.com/bazelbuild/bazel/issues/6526">#6526</a>)</p>
<ul>
<li>Stops different actions from writing to the same path and overwriting=
each other=E2=80=99s output</li>
<li>Improves multiplatform build time and remoe execution caching</li>
<li>Makes pure Java compilation cacehable across different CPUs.</li>
</ul>
<div class=3D"padbottom"></div>
<p><span class=3D"etabox">Jul 2019</span><strong>Projects can selectively o=
pt into automatic shareable actions</strong>
<span class=3D"notstartedstatus">NOT STARTED</span> (<a href=3D"https://git=
hub.com/bazelbuild/bazel/issues/6526">#6526</a>)</p>
<ul>
<li>Exposes the benefits of experimental unique actions while recognizing=
complete migration may take time</li>
</ul>
<div class=3D"padbottom"></div>
<p><span class=3D"etabox">Jul 2019</span><strong>Documentation explains how=
to use
<a href=3D"http://localhost:12345/roadmaps/2019/configuration.html#user-def=
ined-build-settings">configuration transitions</a> efficiently</strong>
<span class=3D"notstartedstatus">NOT STARTED</span> (<a href=3D"https://git=
hub.com/bazelbuild/bazel/issues/6525">#6525</a>)</p>
<ul>
<li>Explains why builds may use more memory and be slower</li>
<li>Explains how to minimize this and make informed use of these features=
</li>
<li>Points to tools for profiling your build</li>
<li>Explains ongoing work to automatically improve efficiency</li>
</ul>
<div class=3D"padbottom"></div>
<p><span class=3D"etabox">late 2019</span><strong>Bazel automatically shrin=
ks graphs with
mixed build settings</strong>
<span class=3D"notstartedstatus">NOT STARTED</span> (<a href=3D"https://git=
hub.com/bazelbuild/bazel/issues/6524">#6524</a>)</p>
<ul>
<li>Productionizes experimental build graph shrinking</li>
</ul>
</div>
</div>
</div>
<footer class=3D"footer">
<div class=3D"container">
<div class=3D"row">
<div class=3D"col-sm-4 col-md-2">
<p>About</p>
<ul class=3D"list-unstyled">
<li><a href=3D"https://github.com/bazelbuild/bazel/wiki/Bazel-Users=
">Who's Using Bazel?</a></li>
<li><a href=3D"http://localhost:12345/roadmap.html">Roadmap</a></li=
>
<li><a href=3D"http://localhost:12345/contributing.html">Contribute=
</a></li>
<li><a href=3D"http://localhost:12345/governance.html">Governance P=
lan</a></li>
<li><a href=3D"https://policies.google.com/privacy">Privacy Policy<=
/a></li>
</ul>
</div>
<div class=3D"col-sm-4 col-md-2">
<p>Support</p>
<ul class=3D"list-unstyled">
<li><a href=3D"https://docs.bazel.build/">Documentation</a></li>
<li><a href=3D"http://localhost:12345/faq.html">FAQ</a></li>
<li><a href=3D"https://github.com/bazelbuild/bazel/issues">Issue Tr=
acker</a></li>
<li><a href=3D"http://localhost:12345/experts.html">Community Exper=
ts</a></li>
<li><a href=3D"http://stackoverflow.com/questions/tagged/bazel">Sta=
ck Overflow</a></li>
<li><a href=3D"http://localhost:12345/support.html">Support Policy<=
/a></li>
</ul>
</div>
<div class=3D"col-sm-4 col-md-2">
<p>Stay Connected</p>
<ul class=3D"list-unstyled">
<li><a href=3D"https://twitter.com/bazelbuild">Twitter</a></li>
<li><a href=3D"https://blog.bazel.build/">Blog</a></li>
<li><a href=3D"https://github.com/bazelbuild/bazel">GitHub</a></li>
<li><a href=3D"https://groups.google.com/forum/#!forum/bazel-discus=
s">Discussion group</a></li>
<li><a href=3D"https://slack.bazel.build/">Slack</a></li>
</ul>
</div>
</div>
<div class=3D"row">
<div class=3D"col-lg-12">
<p class=3D"text-muted">=C2=A9 2020 Google</p>
</div>
</div>
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
=20
<!-- Include all compiled plugins (below), or include individual files =
as needed -->
=20
<!-- Anchor JS -->
=20
=20
=20
<!-- Google Analytics tracking code -->
=20
=20
</body></html>
------MultipartBoundary--kaRchY5BbOFxasisMjPzCQ8SHMH9Zo5uTJDI6xtTNb----
Content-Type: text/css
Content-Transfer-Encoding: quoted-printable
Content-Location: cid:css-9905a4f3-7448-4efb-8f62-cbfc1287850c@mhtml.blink
@charset "utf-8";
.anchorjs-link { opacity: 0; text-decoration: none; -webkit-font-smoothing:=
antialiased; }
:hover > .anchorjs-link, .anchorjs-link:focus { opacity: 1; }
[data-anchorjs-icon]::after { content: attr(data-anchorjs-icon); }
@font-face { font-family: anchorjs-icons; font-style: normal; font-weight: =
normal; src: url("data:application/x-font-ttf;charset=3Dutf-8;base64,AAEAAA=
ALAIAAAwAwT1MvMg8SBTUAAAC8AAAAYGNtYXAWi9QdAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ=
2x5Zgq29TcAAAF4AAABNGhlYWQEZM3pAAACrAAAADZoaGVhBhUDxgAAAuQAAAAkaG10eASAADEA=
AAMIAAAAFGxvY2EAKACuAAADHAAAAAxtYXhwAAgAVwAAAygAAAAgbmFtZQ5yJ3cAAANIAAAB2nB=
vc3QAAwAAAAAFJAAAACAAAwJAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAA=
AAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpywPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAA=
AADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6cv//f//AAAAAAAg=
6cv//f//AAH/4xY5AAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAE=
AAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAACADEARAJTAsAAKwBUAAABIi=
YnJjQ/AT4BMzIWFxYUDwEGIicmND8BNjQnLgEjIgYPAQYUFxYUBw4BIwciJicmND8BNjIXFhQPA=
QYUFx4BMzI2PwE2NCcmNDc2MhcWFA8BDgEjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIg=
DXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxY=
ugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLY=
EuehYXAAEAAAABAACiToc1Xw889QALBAAAAAAA0XnFFgAAAADRecUWAAAAAAJTAsAAAAAIAAIAA=
AAAAAAAAQAAA8D/wAAABAAAAAAAAlMAAQAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAACAAAA=
AoAAMQAAAAAACgAUAB4AmgABAAAABQBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAE=
AAAAAAAEADgAAAAEAAAAAAAIABwCfAAEAAAAAAAMADgBLAAEAAAAAAAQADgC0AAEAAAAAAAUACw=
AqAAEAAAAAAAYADgB1AAEAAAAAAAoAGgDeAAMAAQQJAAEAHAAOAAMAAQQJAAIADgCmAAMAAQQJA=
AMAHABZAAMAAQQJAAQAHADCAAMAAQQJAAUAFgA1AAMAAQQJAAYAHACDAAMAAQQJAAoANAD4YW5j=
aG9yanMtaWNvbnMAYQBuAGMAaABvAHIAagBzAC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHI=
AcwBpAG8AbgAgADEALgAwYW5jaG9yanMtaWNvbnMAYQBuAGMAaABvAHIAagBzAC0AaQBjAG8Abg=
BzYW5jaG9yanMtaWNvbnMAYQBuAGMAaABvAHIAagBzAC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZ=
wB1AGwAYQByYW5jaG9yanMtaWNvbnMAYQBuAGMAaABvAHIAagBzAC0AaQBjAG8AbgBzRm9udCBn=
ZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACA=
ASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=3D=3D")=
format("truetype"); }
------MultipartBoundary--kaRchY5BbOFxasisMjPzCQ8SHMH9Zo5uTJDI6xtTNb----
Content-Type: text/css
Content-Transfer-Encoding: quoted-printable
Content-Location: cid:css-01716c80-cd63-41f0-962e-279d0c587c31@mhtml.blink
@charset "utf-8";
.padbottom { padding-bottom: 10px; }
.etabox { background: rgb(239, 239, 239); color: rgb(56, 118, 29); font-siz=
e: 15px; font-weight: bold; display: inline; padding: 6px; margin-right: 10=
px; }
.donestatus { color: rgb(0, 208, 0); font-weight: bold; padding-left: 10px;=
}
.inprogressstatus { color: rgb(208, 208, 0); font-weight: bold; padding-lef=
t: 10px; }
.notstartedstatus { color: rgb(208, 0, 0); font-weight: bold; padding-left:=
10px; }
------MultipartBoundary--kaRchY5BbOFxasisMjPzCQ8SHMH9Zo5uTJDI6xtTNb----
Content-Type: text/css
Content-Transfer-Encoding: quoted-printable
Content-Location: http://fonts.googleapis.com/css?family=Roboto:300,400,500|Source+Code+Pro:400,500,700
@charset "utf-8";
@font-face { font-family: Roboto; font-style: normal; font-weight: 300; src=
: local("Roboto Light"), local("Roboto-Light"), url("https://fonts.gstatic.=
com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2") format("woff2"); unico=
de-range: U+460-52F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-=
FE2F; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 300; src=
: local("Roboto Light"), local("Roboto-Light"), url("https://fonts.gstatic.=
com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2") format("woff2"); unico=
de-range: U+400-45F, U+490-491, U+4B0-4B1, U+2116; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 300; src=
: local("Roboto Light"), local("Roboto-Light"), url("https://fonts.gstatic.=
com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2") format("woff2"); unico=
de-range: U+1F00-1FFF; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 300; src=
: local("Roboto Light"), local("Roboto-Light"), url("https://fonts.gstatic.=
com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2") format("woff2"); unico=
de-range: U+370-3FF; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 300; src=
: local("Roboto Light"), local("Roboto-Light"), url("https://fonts.gstatic.=
com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2") format("woff2"); unico=
de-range: U+102-103, U+110-111, U+1EA0-1EF9, U+20AB; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 300; src=
: local("Roboto Light"), local("Roboto-Light"), url("https://fonts.gstatic.=
com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2") format("woff2"); unico=
de-range: U+100-24F, U+259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, =
U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 300; src=
: local("Roboto Light"), local("Roboto-Light"), url("https://fonts.gstatic.=
com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fBBc4.woff2") format("woff2"); unicode-=
range: U+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+2000-206=
F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; =
}
@font-face { font-family: Roboto; font-style: normal; font-weight: 400; src=
: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/=
s/roboto/v20/KFOmCnqEu92Fr1Mu72xKOzY.woff2") format("woff2"); unicode-range=
: U+460-52F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 400; src=
: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/=
s/roboto/v20/KFOmCnqEu92Fr1Mu5mxKOzY.woff2") format("woff2"); unicode-range=
: U+400-45F, U+490-491, U+4B0-4B1, U+2116; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 400; src=
: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/=
s/roboto/v20/KFOmCnqEu92Fr1Mu7mxKOzY.woff2") format("woff2"); unicode-range=
: U+1F00-1FFF; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 400; src=
: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/=
s/roboto/v20/KFOmCnqEu92Fr1Mu4WxKOzY.woff2") format("woff2"); unicode-range=
: U+370-3FF; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 400; src=
: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/=
s/roboto/v20/KFOmCnqEu92Fr1Mu7WxKOzY.woff2") format("woff2"); unicode-range=
: U+102-103, U+110-111, U+1EA0-1EF9, U+20AB; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 400; src=
: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/=
s/roboto/v20/KFOmCnqEu92Fr1Mu7GxKOzY.woff2") format("woff2"); unicode-range=
: U+100-24F, U+259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, =
U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 400; src=
: local("Roboto"), local("Roboto-Regular"), url("https://fonts.gstatic.com/=
s/roboto/v20/KFOmCnqEu92Fr1Mu4mxK.woff2") format("woff2"); unicode-range: U=
+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+2000-206F, U+207=
4, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 500; src=
: local("Roboto Medium"), local("Roboto-Medium"), url("https://fonts.gstati=
c.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2") format("woff2"); uni=
code-range: U+460-52F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2=
E-FE2F; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 500; src=
: local("Roboto Medium"), local("Roboto-Medium"), url("https://fonts.gstati=
c.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2") format("woff2"); uni=
code-range: U+400-45F, U+490-491, U+4B0-4B1, U+2116; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 500; src=
: local("Roboto Medium"), local("Roboto-Medium"), url("https://fonts.gstati=
c.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2") format("woff2"); uni=
code-range: U+1F00-1FFF; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 500; src=
: local("Roboto Medium"), local("Roboto-Medium"), url("https://fonts.gstati=
c.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2") format("woff2"); uni=
code-range: U+370-3FF; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 500; src=
: local("Roboto Medium"), local("Roboto-Medium"), url("https://fonts.gstati=
c.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2") format("woff2"); uni=
code-range: U+102-103, U+110-111, U+1EA0-1EF9, U+20AB; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 500; src=
: local("Roboto Medium"), local("Roboto-Medium"), url("https://fonts.gstati=
c.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2") format("woff2"); uni=
code-range: U+100-24F, U+259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF=
, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: Roboto; font-style: normal; font-weight: 500; src=
: local("Roboto Medium"), local("Roboto-Medium"), url("https://fonts.gstati=
c.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fBBc4.woff2") format("woff2"); unicod=
e-range: U+0-FF, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+2000-2=
06F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD=
; }
@font-face { font-family: "Source Code Pro"; font-style: normal; font-weigh=
t: 400; src: local("Source Code Pro Regular"), local("SourceCodePro-Regular=
"), url("https://fonts.gstatic.com/s/sourcecodepro/v11/HI_SiYsKILxRpg3hIP6s=
J7fM7PqlMOvWjMY.woff2") format("woff2"); unicode-range: U+460-52F, U+1C80-1=
C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }
@font-face { font-family: "Source Code Pro"; font-style: normal; font-weigh=
t: 400; src: local("Source Code Pro Regular"), local("SourceCodePro-Regular=
"), url("https://fonts.gstatic.com/s/sourcecodepro/v11/HI_SiYsKILxRpg3hIP6s=
J7fM7PqlOevWjMY.woff2") format("woff2"); unicode-range: U+400-45F, U+490-49=
1, U+4B0-4B1, U+2116; }
@font-face { font-family: "Source Code Pro"; font-style: normal; font-weigh=
t: 400; src: local("Source Code Pro Regular"), local("SourceCodePro-Regular=
"), url("https://fonts.gstatic.com/s/sourcecodepro/v11/HI_SiYsKILxRpg3hIP6s=
J7fM7PqlPuvWjMY.woff2") format("woff2"); unicode-range: U+370-3FF; }
@font-face { font-family: "Source Code Pro"; font-style: normal; font-weigh=
t: 400; src: local("Source Code Pro Regular"), local("SourceCodePro-Regular=
"), url("https://fonts.gstatic.com/s/sourcecodepro/v11/HI_SiYsKILxRpg3hIP6s=
J7fM7PqlMuvWjMY.woff2") format("woff2"); unicode-range: U+102-103, U+110-11=
1, U+1EA0-1EF9, U+20AB; }
@font-face { font-family: "Source Code Pro"; font-style: normal; font-weigh=
t: 400; src: local("Source Code Pro Regular"), local("SourceCodePro-Regular=
"), url("https://fonts.gstatic.com/s/sourcecodepro/v11/HI_SiYsKILxRpg3hIP6s=
J7fM7PqlM-vWjMY.woff2") format("woff2"); unicode-range: U+100-24F, U+259, U=
+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A=
7FF; }
@font-face { font-family: "Source Code Pro"; font-style: normal; font-weigh=
t: 400; src: local("Source Code Pro Regular"), local("SourceCodePro-Regular=
"), url("https://fonts.gstatic.com/s/sourcecodepro/v11/HI_SiYsKILxRpg3hIP6s=
J7fM7PqlPevW.woff2") format("woff2"); unicode-range: U+0-FF, U+131, U+152-1=
53, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+2000-206F, U+2074, U+20AC, U+2122, U+=
2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Source Code Pro"; font-style: normal; font-weigh=
t: 500; src: local("Source Code Pro Medium"), local("SourceCodePro-Medium")=
, url("https://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7=
fM7PqtzsjDvucq_mk.woff2") format("woff2"); unicode-range: U+460-52F, U+1C80=
-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }
@font-face { font-family: "Source Code Pro"; font-style: normal; font-weigh=
t: 500; src: local("Source Code Pro Medium"), local("SourceCodePro-Medium")=
, url("https://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7=
fM7PqtzsjDt-cq_mk.woff2") format("woff2"); unicode-range: U+400-45F, U+490-=
491, U+4B0-4B1, U+2116; }
@font-face { font-family: "Source Code Pro"; font-style: normal; font-weigh=
t: 500; src: local("Source Code Pro Medium"), local("SourceCodePro-Medium")=
, url("https://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7=
fM7PqtzsjDsOcq_mk.woff2") format("woff2"); unicode-range: U+370-3FF; }
@font-face { font-family: "Source Code Pro"; font-style: normal; font-weigh=
t: 500; src: local("Source Code Pro Medium"), local("SourceCodePro-Medium")=
, url("https://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7=
fM7PqtzsjDvOcq_mk.woff2") format("woff2"); unicode-range: U+102-103, U+110-=
111, U+1EA0-1EF9, U+20AB; }
@font-face { font-family: "Source Code Pro"; font-style: normal; font-weigh=
t: 500; src: local("Source Code Pro Medium"), local("SourceCodePro-Medium")=
, url("https://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7=
fM7PqtzsjDvecq_mk.woff2") format("woff2"); unicode-range: U+100-24F, U+259,=
U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720=
-A7FF; }
@font-face { font-family: "Source Code Pro"; font-style: normal; font-weigh=
t: 500; src: local("Source Code Pro Medium"), local("SourceCodePro-Medium")=
, url("https://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7=
fM7PqtzsjDs-cq.woff2") format("woff2"); unicode-range: U+0-FF, U+131, U+152=
-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+2000-206F, U+2074, U+20AC, U+2122, =
U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }