Add the project information to each file's header comment.

BUG=None
TEST=None

Change-Id: I362bfbf18c42025a0248714aa5d69ecfaa1daa2b
Reviewed-on: https://gerrit-int.chromium.org/40826
Reviewed-by: Luis Lozano <llozano@chromium.org>
Commit-Queue: Yuheng Long <yuhenglong@google.com>
Tested-by: Yuheng Long <yuhenglong@google.com>
diff --git a/bestflags/generation.py b/bestflags/generation.py
index a6d38c8..413b63b 100644
--- a/bestflags/generation.py
+++ b/bestflags/generation.py
@@ -1,6 +1,9 @@
 """A generation of a set of tasks.
 
-This contains the core algorithm of producing the next generation of execution.
+Part of the Chrome build flags optimization.
+
+This module contains the core algorithm of producing the next generation of
+execution.
 """
 
 __author__ = 'yuhenglong@google.com (Yuheng Long)'
diff --git a/bestflags/generation_test.py b/bestflags/generation_test.py
index d97f51b..b977925 100644
--- a/bestflags/generation_test.py
+++ b/bestflags/generation_test.py
@@ -1,4 +1,7 @@
-"""Generation unittest."""
+"""Generation unittest.
+
+Part of the Chrome build flags optimization.
+"""
 
 __author__ = 'yuhenglong@google.com (Yuheng Long)'
 
diff --git a/bestflags/pipeline_process.py b/bestflags/pipeline_process.py
index 29d88f5..c5a7b8b 100644
--- a/bestflags/pipeline_process.py
+++ b/bestflags/pipeline_process.py
@@ -1,5 +1,7 @@
 """Pipeline process that encapsulates the actual content.
 
+Part of the Chrome build flags optimization.
+
 The actual stages include the builder and the executor.
 """
 
diff --git a/bestflags/pipeline_process_test.py b/bestflags/pipeline_process_test.py
index e40b5a2..837ed76 100644
--- a/bestflags/pipeline_process_test.py
+++ b/bestflags/pipeline_process_test.py
@@ -1,4 +1,7 @@
-"""Pipeline Process unittest."""
+"""Pipeline Process unittest.
+
+Part of the Chrome build flags optimization.
+"""
 
 __author__ = 'yuhenglong@google.com (Yuheng Long)'
 
diff --git a/bestflags/pipeline_worker.py b/bestflags/pipeline_worker.py
index 6ab965e..4a1722a 100644
--- a/bestflags/pipeline_worker.py
+++ b/bestflags/pipeline_worker.py
@@ -1,5 +1,7 @@
 """The pipeline_worker functions of the build and test stage of the framework.
 
+Part of the Chrome build flags optimization.
+
 This module defines the helper and the worker. If there are duplicate tasks, for
 example t1 and t2, needs to be built/tested, one of them, for example t1, will
 be built/tested and the helper waits for the result of t1 and set the results of
diff --git a/bestflags/pipeline_worker_test.py b/bestflags/pipeline_worker_test.py
index 340b301..3c2b913 100644
--- a/bestflags/pipeline_worker_test.py
+++ b/bestflags/pipeline_worker_test.py
@@ -1,5 +1,7 @@
 """Unittest for the pipeline_worker functions in the build/test stage.
 
+Part of the Chrome build flags optimization.
+
 This module tests the helper method and the worker method.
 """
 
diff --git a/bestflags/steering.py b/bestflags/steering.py
index 7d9064b..0be8d90 100644
--- a/bestflags/steering.py
+++ b/bestflags/steering.py
@@ -1,4 +1,7 @@
-"""A Genetic Algorithm implementation for selecting good flags."""
+"""A Genetic Algorithm implementation for selecting good flags.
+
+Part of the Chrome build flags optimization.
+"""
 
 __author__ = 'yuhenglong@google.com (Yuheng Long)'
 
diff --git a/bestflags/steering_test.py b/bestflags/steering_test.py
index c538d5f..cdda67b 100644
--- a/bestflags/steering_test.py
+++ b/bestflags/steering_test.py
@@ -1,4 +1,7 @@
-"""Steering stage unittest."""
+"""Steering stage unittest.
+
+Part of the Chrome build flags optimization.
+"""
 
 __author__ = 'yuhenglong@google.com (Yuheng Long)'
 
diff --git a/bestflags/task.py b/bestflags/task.py
index b092ffc..f5908fd 100644
--- a/bestflags/task.py
+++ b/bestflags/task.py
@@ -1,5 +1,7 @@
 """A reproducing entity.
 
+Part of the Chrome build flags optimization.
+
 The Task class is used by different modules. Each module fills in the
 corresponding information into a Task instance. Class Task contains the bit set
 representing the flags selection. The builder module is responsible for filling
diff --git a/bestflags/task_test.py b/bestflags/task_test.py
index c21dc4d..4a76db0 100644
--- a/bestflags/task_test.py
+++ b/bestflags/task_test.py
@@ -1,4 +1,7 @@
-"""Task unittest."""
+"""Task unittest.
+
+Part of the Chrome build flags optimization.
+"""
 
 __author__ = 'yuhenglong@google.com (Yuheng Long)'