Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(296)

Side by Side Diff: components/nacl.gyp

Issue 1171333003: Move net::FormatUrl and friends outside of //net and into //components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fixes following rebase Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 'target_defaults': { 9 'target_defaults': {
10 'variables': { 10 'variables': {
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 'nacl/browser/pnacl_host.h', 110 'nacl/browser/pnacl_host.h',
111 'nacl/browser/pnacl_translation_cache.cc', 111 'nacl/browser/pnacl_translation_cache.cc',
112 'nacl/browser/pnacl_translation_cache.h', 112 'nacl/browser/pnacl_translation_cache.h',
113 'nacl/common/nacl_debug_exception_handler_win.cc', 113 'nacl/common/nacl_debug_exception_handler_win.cc',
114 'nacl/common/nacl_debug_exception_handler_win.h', 114 'nacl/common/nacl_debug_exception_handler_win.h',
115 ], 115 ],
116 'include_dirs': [ 116 'include_dirs': [
117 '..', 117 '..',
118 ], 118 ],
119 'dependencies': [ 119 'dependencies': [
120 'components.gyp:url_formatter',
120 'nacl_common', 121 'nacl_common',
121 'nacl_switches', 122 'nacl_switches',
122 '../native_client/src/trusted/service_runtime/service_runtime.gyp:se l', 123 '../native_client/src/trusted/service_runtime/service_runtime.gyp:se l',
123 '../content/content.gyp:content_browser', 124 '../content/content.gyp:content_browser',
124 ], 125 ],
125 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 126 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
126 'msvs_disabled_warnings': [4267, ], 127 'msvs_disabled_warnings': [4267, ],
127 'conditions': [ 128 'conditions': [
128 ['OS=="linux"', { 129 ['OS=="linux"', {
129 'sources': [ 130 'sources': [
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 ], 508 ],
508 'include_dirs': [ 509 'include_dirs': [
509 '..', 510 '..',
510 ], 511 ],
511 'dependencies': [ 512 'dependencies': [
512 '../content/content.gyp:content_common', 513 '../content/content.gyp:content_common',
513 ], 514 ],
514 }, 515 },
515 ] 516 ]
516 } 517 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698