Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 'includes': { | |
| 7 '../../mojo/mojo_variables.gypi', | |
|
nodir
2016/05/26 17:57:57
should be a list?
stgao
2016/05/26 18:28:07
It seems this cause a lot of failures in lkgr.
htt
| |
| 8 }, | |
| 6 'variables': { | 9 'variables': { |
| 7 'chromium_code': 1, | 10 'chromium_code': 1, |
| 8 }, | 11 }, |
| 9 'targets': [ | 12 'targets': [ |
| 10 { | 13 { |
| 11 'target_name': 'gfx_geometry', | 14 'target_name': 'gfx_geometry', |
| 12 'type': '<(component)', | 15 'type': '<(component)', |
| 13 'dependencies': [ | 16 'dependencies': [ |
| 14 '<(DEPTH)/base/base.gyp:base', | 17 '<(DEPTH)/base/base.gyp:base', |
| 15 ], | 18 ], |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 61 'geometry/vector2d_f.cc', | 64 'geometry/vector2d_f.cc', |
| 62 'geometry/vector2d_f.h', | 65 'geometry/vector2d_f.h', |
| 63 'geometry/vector3d_f.cc', | 66 'geometry/vector3d_f.cc', |
| 64 'geometry/vector3d_f.h', | 67 'geometry/vector3d_f.h', |
| 65 ], | 68 ], |
| 66 'includes': [ | 69 'includes': [ |
| 67 '../../build/android/increase_size_for_speed.gypi', | 70 '../../build/android/increase_size_for_speed.gypi', |
| 68 ], | 71 ], |
| 69 }, | 72 }, |
| 70 { | 73 { |
| 74 # GN version: //ui/gfx/geometry/mojo:interfaces | |
| 75 'target_name': 'mojo_geometry_bindings_mojom', | |
| 76 'type': 'none', | |
| 77 'variables': { | |
| 78 'mojom_files': [ | |
| 79 'geometry/mojo/geometry.mojom', | |
| 80 ], | |
| 81 }, | |
| 82 'includes': [ '../../mojo/mojom_bindings_generator_explicit.gypi' ], | |
| 83 }, | |
| 84 { | |
| 85 'target_name': 'mojo_geometry_bindings', | |
| 86 'type': 'static_library', | |
| 87 'dependencies': [ | |
| 88 'mojo_geometry_bindings_mojom', | |
| 89 '../../mojo/mojo_public.gyp:mojo_cpp_bindings', | |
| 90 ], | |
| 91 }, | |
| 92 { | |
| 93 # GN version: //ui/gfx/geometry/mojo | |
| 94 'target_name': 'mojo_geometry_lib', | |
| 95 'type': '<(component)', | |
| 96 'defines': [ | |
| 97 'MOJO_GEOMETRY_IMPLEMENTATION', | |
| 98 ], | |
| 99 'dependencies': [ | |
| 100 'mojo_geometry_bindings', | |
| 101 'gfx_geometry', | |
| 102 '<(mojo_system_for_component)', | |
| 103 ], | |
| 104 'sources': [ | |
| 105 'geometry/mojo/geometry_type_converters.cc', | |
| 106 'geometry/mojo/geometry_type_converters.h', | |
| 107 'geometry/mojo/mojo_geometry_export.h', | |
| 108 ], | |
| 109 }, | |
| 110 { | |
| 71 'target_name': 'gfx_range', | 111 'target_name': 'gfx_range', |
| 72 'type': '<(component)', | 112 'type': '<(component)', |
| 73 'dependencies': [ | 113 'dependencies': [ |
| 74 '<(DEPTH)/base/base.gyp:base', | 114 '<(DEPTH)/base/base.gyp:base', |
| 75 ], | 115 ], |
| 76 'defines': [ | 116 'defines': [ |
| 77 'GFX_RANGE_IMPLEMENTATION', | 117 'GFX_RANGE_IMPLEMENTATION', |
| 78 ], | 118 ], |
| 79 'sources': [ | 119 'sources': [ |
| 80 'range/gfx_range_export.h', | 120 'range/gfx_range_export.h', |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 581 ], | 621 ], |
| 582 'variables': { | 622 'variables': { |
| 583 'jni_gen_package': 'ui/gfx', | 623 'jni_gen_package': 'ui/gfx', |
| 584 }, | 624 }, |
| 585 'includes': [ '../../build/jni_generator.gypi' ], | 625 'includes': [ '../../build/jni_generator.gypi' ], |
| 586 }, | 626 }, |
| 587 ], | 627 ], |
| 588 }], | 628 }], |
| 589 ], | 629 ], |
| 590 } | 630 } |
| OLD | NEW |