| OLD | NEW |
| 1 { | 1 { |
| 2 'conditions': [ | 2 'conditions': [ |
| 3 # Handle build types. | 3 # Handle build types. |
| 4 ['buildtype=="Dev"', { | 4 ['buildtype=="Dev"', { |
| 5 'includes': ['internal/release_impl.gypi'], | 5 'includes': ['internal/release_impl.gypi'], |
| 6 }], | 6 }], |
| 7 ['buildtype=="Official"', { | 7 ['buildtype=="Official"', { |
| 8 'includes': ['internal/release_impl_official.gypi'], | 8 'includes': ['internal/release_impl_official.gypi'], |
| 9 }], | 9 }], |
| 10 # TODO(bradnelson): may also need: | 10 # TODO(bradnelson): may also need: |
| 11 # checksenabled | 11 # checksenabled |
| 12 # coverage | 12 # coverage |
| 13 # dom_stats | 13 # dom_stats |
| 14 # pgo_instrument | 14 # pgo_instrument |
| 15 # pgo_optimize | 15 # pgo_optimize |
| 16 # purify | |
| 17 ], | 16 ], |
| 18 } | 17 } |
| OLD | NEW |