Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 | 9 |
| 10 'targets': [ | 10 'targets': [ |
| 11 { | 11 { |
| 12 'target_name': 'accessibility', | 12 'target_name': 'accessibility', |
| 13 'type': '<(component)', | 13 'type': '<(component)', |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 ':ax', | |
| 15 '../../base/base.gyp:base', | 16 '../../base/base.gyp:base', |
| 16 '../gfx/gfx.gyp:gfx', | 17 '../gfx/gfx.gyp:gfx', |
| 17 '../gfx/gfx.gyp:gfx_geometry', | 18 '../gfx/gfx.gyp:gfx_geometry', |
| 18 ], | 19 ], |
| 19 'defines': [ | 20 'defines': [ |
| 20 'ACCESSIBILITY_IMPLEMENTATION', | 21 'ACCESSIBILITY_IMPLEMENTATION', |
| 21 ], | 22 ], |
| 22 'sources': [ | 23 'sources': [ |
| 23 # All .cc, .h under accessibility, except unittests | 24 # All .cc, .h under accessibility, except unittests |
| 24 'ax_enums.h', | 25 'ax_enums.h', |
| (...skipping 22 matching lines...) Expand all Loading... | |
| 47 '../gfx/gfx.gyp:gfx', | 48 '../gfx/gfx.gyp:gfx', |
| 48 '../gfx/gfx.gyp:gfx_geometry', | 49 '../gfx/gfx.gyp:gfx_geometry', |
| 49 'accessibility', | 50 'accessibility', |
| 50 ], | 51 ], |
| 51 'sources': [ | 52 'sources': [ |
| 52 'ax_generated_tree_unittest.cc', | 53 'ax_generated_tree_unittest.cc', |
| 53 'ax_tree_serializer_unittest.cc', | 54 'ax_tree_serializer_unittest.cc', |
| 54 'ax_tree_unittest.cc', | 55 'ax_tree_unittest.cc', |
| 55 ] | 56 ] |
| 56 }, | 57 }, |
| 58 { | |
| 59 'target_name': 'ax', | |
| 60 'type': 'static_library', | |
| 61 'sources': [ | |
| 62 '<@(schema_files)', | |
| 63 ], | |
| 64 'msvs_disabled_warnings': [ 4267 ], | |
| 65 'includes': [ | |
| 66 '../../build/json_schema_bundle_compile.gypi', | |
| 67 '../../build/json_schema_compile.gypi', | |
| 68 ], | |
| 69 'variables': { | |
| 70 'chromium_code': 1, | |
| 71 'schema_files': [ | |
| 72 'ui.idl', | |
| 73 ], | |
| 74 'non_compiled_schema_files': [], | |
| 75 'cc_dir': 'ui/accessibility', | |
| 76 'root_namespace': '', | |
|
not at google - send to devlin
2014/01/23 18:26:47
one last question: why not just use a namespace he
David Tseng
2014/01/23 19:12:41
I would do this but the files under ui/accessibili
| |
| 77 }, | |
| 78 }, | |
| 57 ], | 79 ], |
| 58 } | 80 } |
| OLD | NEW |