aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuheng Long <yuhenglong@google.com>2013-07-10 14:45:29 -0700
committerChromeBot <chrome-bot@google.com>2013-07-11 04:26:38 -0700
commit49358b75c25a44760e884245440dc96e55812d04 (patch)
treedbc62e74cfcfe500efd042c0107603d4684d63a9
parent761748dc64a0d2a6a90714097445fcf782a8934e (diff)
downloadtoolchain-utils-49358b75c25a44760e884245440dc96e55812d04.tar.gz
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>
-rw-r--r--bestflags/generation.py5
-rw-r--r--bestflags/generation_test.py5
-rw-r--r--bestflags/pipeline_process.py2
-rw-r--r--bestflags/pipeline_process_test.py5
-rw-r--r--bestflags/pipeline_worker.py2
-rw-r--r--bestflags/pipeline_worker_test.py2
-rw-r--r--bestflags/steering.py5
-rw-r--r--bestflags/steering_test.py5
-rw-r--r--bestflags/task.py2
-rw-r--r--bestflags/task_test.py5
10 files changed, 32 insertions, 6 deletions
diff --git a/bestflags/generation.py b/bestflags/generation.py
index a6d38c81..413b63b8 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 d97f51be..b9779255 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 29d88f52..c5a7b8bb 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 e40b5a21..837ed76a 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 6ab965e2..4a1722a8 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 340b3011..3c2b9136 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 7d9064b5..0be8d906 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 c538d5fb..cdda67b3 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 b092ffc9..f5908fdb 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 c21dc4dc..4a76db0d 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)'