| 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, # Use higher warning level. | 7 'chromium_code': 1, # Use higher warning level. |
| 8 }, | 8 }, |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 }, | 39 }, |
| 40 'dependencies': [ | 40 'dependencies': [ |
| 41 'ppapi.gyp:ppapi_c', | 41 'ppapi.gyp:ppapi_c', |
| 42 '../base/base.gyp:base', | 42 '../base/base.gyp:base', |
| 43 '../base/base.gyp:base_i18n', | 43 '../base/base.gyp:base_i18n', |
| 44 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 44 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 45 '../build/temp_gyp/googleurl.gyp:googleurl', | 45 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 46 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', | 46 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', |
| 47 '../gpu/gpu.gyp:command_buffer_client', | 47 '../gpu/gpu.gyp:command_buffer_client', |
| 48 '../gpu/gpu.gyp:gles2_implementation', | 48 '../gpu/gpu.gyp:gles2_implementation', |
| 49 '../media/media.gyp:shared_memory_support', |
| 49 '../net/net.gyp:net', | 50 '../net/net.gyp:net', |
| 50 '../skia/skia.gyp:skia', | 51 '../skia/skia.gyp:skia', |
| 51 '../third_party/icu/icu.gyp:icuuc', | 52 '../third_party/icu/icu.gyp:icuuc', |
| 52 # TODO(ananta) : The WebKit dependency needs to move to a new target for
NACL. | 53 # TODO(ananta) : The WebKit dependency needs to move to a new target for
NACL. |
| 53 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | 54 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 54 '../ui/surface/surface.gyp:surface', | 55 '../ui/surface/surface.gyp:surface', |
| 55 ], | 56 ], |
| 56 'export_dependent_settings': [ | 57 'export_dependent_settings': [ |
| 57 '../base/base.gyp:base', | 58 '../base/base.gyp:base', |
| 58 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | 59 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 85 'ppapi_shared', | 86 'ppapi_shared', |
| 86 ], | 87 ], |
| 87 'all_dependent_settings': { | 88 'all_dependent_settings': { |
| 88 'include_dirs': [ | 89 'include_dirs': [ |
| 89 '..', | 90 '..', |
| 90 ], | 91 ], |
| 91 }, | 92 }, |
| 92 }, | 93 }, |
| 93 ] | 94 ] |
| 94 } | 95 } |
| OLD | NEW |