| Index: src/flags.cc
 | 
| diff --git a/src/flags.cc b/src/flags.cc
 | 
| index 6f28ebb0379d5dcdd37481aac64b11a2ec1cb395..1899d7ebecd636f176fddf8e71505e08162609ab 100644
 | 
| --- a/src/flags.cc
 | 
| +++ b/src/flags.cc
 | 
| @@ -2,16 +2,19 @@
 | 
|  // Use of this source code is governed by a BSD-style license that can be
 | 
|  // found in the LICENSE file.
 | 
|  
 | 
| +#include "src/flags.h"
 | 
| +
 | 
|  #include <cctype>
 | 
|  #include <cstdlib>
 | 
|  #include <sstream>
 | 
|  
 | 
| -#include "src/v8.h"
 | 
| -
 | 
| +#include "src/allocation.h"
 | 
|  #include "src/assembler.h"
 | 
|  #include "src/base/functional.h"
 | 
|  #include "src/base/platform/platform.h"
 | 
| +#include "src/objects-inl.h"  // TODO(mstarzinger): Temporary cycle breaker!
 | 
|  #include "src/ostreams.h"
 | 
| +#include "src/utils.h"
 | 
|  
 | 
|  namespace v8 {
 | 
|  namespace internal {
 | 
| 
 |