| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'target_defaults': { |
| 10 'configurations': { |
| 11 'Release': { |
| 12 'conditions': [ |
| 13 ['OS=="android"', { |
| 14 'cflags!': ['-Os'], |
| 15 'cflags': ['-O2'], |
| 16 }], |
| 17 ], |
| 18 }, |
| 19 }, |
| 20 }, |
| 9 'targets': [ | 21 'targets': [ |
| 10 { | 22 { |
| 11 # GN version: //cc | 23 # GN version: //cc |
| 12 'target_name': 'cc', | 24 'target_name': 'cc', |
| 13 'type': '<(component)', | 25 'type': '<(component)', |
| 14 'dependencies': [ | 26 'dependencies': [ |
| 15 '<(DEPTH)/base/base.gyp:base', | 27 '<(DEPTH)/base/base.gyp:base', |
| 16 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 28 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 17 '<(DEPTH)/gpu/gpu.gyp:gpu', | 29 '<(DEPTH)/gpu/gpu.gyp:gpu', |
| 18 '<(DEPTH)/media/media.gyp:media', | 30 '<(DEPTH)/media/media.gyp:media', |
| (...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 'surfaces/surface_id_allocator.h', | 543 'surfaces/surface_id_allocator.h', |
| 532 'surfaces/surface_manager.cc', | 544 'surfaces/surface_manager.cc', |
| 533 'surfaces/surface_manager.h', | 545 'surfaces/surface_manager.h', |
| 534 'surfaces/surface_resource_holder.cc', | 546 'surfaces/surface_resource_holder.cc', |
| 535 'surfaces/surface_resource_holder.h', | 547 'surfaces/surface_resource_holder.h', |
| 536 'surfaces/surfaces_export.h', | 548 'surfaces/surfaces_export.h', |
| 537 ], | 549 ], |
| 538 }, | 550 }, |
| 539 ], | 551 ], |
| 540 } | 552 } |
| OLD | NEW |